.eslintrc.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. module.exports = {
  2. 'extends': ['eslint:recommended', 'plugin:react/recommended'],
  3. 'env': {
  4. 'browser': true,
  5. 'node': true,
  6. 'es6': true
  7. },
  8. 'globals': {
  9. // Meteor
  10. 'Accounts': true,
  11. 'HTTP': true,
  12. 'Log': true,
  13. 'Match': true,
  14. 'Meteor': true,
  15. 'Mongo': true,
  16. 'Npm': true,
  17. 'Package': true,
  18. 'ServiceConfiguration': true,
  19. 'Session': true,
  20. 'Template': true,
  21. 'Tinytest': true,
  22. 'WebApp': true,
  23. 'check': true,
  24. 'SimpleSchema': true,
  25. // Globals de l'application.
  26. 'logger': true,
  27. 'toastr': false,
  28. },
  29. 'parser': 'babel-eslint',
  30. 'plugins': ['react'],
  31. 'parserOptions': {
  32. 'ecmaFeatures': {
  33. 'arrowFunctions': true,
  34. 'binaryLiterals': true,
  35. 'blockBindings': true,
  36. 'classes': true,
  37. 'defaultParams': true,
  38. 'destructuring': true,
  39. 'experimentalObjectRestSpread': true,
  40. 'forOf': true,
  41. 'generators': true,
  42. 'globalReturn': true,
  43. 'jsx': true,
  44. 'modules': true,
  45. 'objectLiteralComputedProperties': true,
  46. 'objectLiteralDuplicateProperties': true,
  47. 'objectLiteralShorthandMethods': true,
  48. 'objectLiteralShorthandProperties': true,
  49. 'octalLiterals': true,
  50. 'regexUFlag': true,
  51. 'regexYFlag': true,
  52. 'spread': true,
  53. 'superInFunctions': true,
  54. 'templateStrings': true,
  55. 'unicodeCodePointEscapes': true
  56. },
  57. 'sourceType': "module"
  58. },
  59. 'rules': {
  60. //
  61. // Possible Errors
  62. //
  63. // The following rules point out areas where you might have made mistakes.
  64. //
  65. 'comma-dangle': [2, "only-multiline"], // disallow or enforce trailing commas
  66. 'no-cond-assign': 2, // disallow assignment in conditional expressions
  67. 'no-console': 1, // disallow use of console (off by default in the node environment)
  68. 'no-constant-condition': 2, // disallow use of constant expressions in conditions
  69. 'no-control-regex': 2, // disallow control characters in regular expressions
  70. 'no-debugger': 2, // disallow use of debugger
  71. 'no-dupe-args': 2, // disallow duplicate arguments in functions
  72. 'no-dupe-keys': 2, // disallow duplicate keys when creating object literals
  73. 'no-duplicate-case': 2, // disallow a duplicate case label.
  74. 'no-empty': 2, // disallow empty statements
  75. 'no-empty-character-class': 2, // disallow the use of empty character classes in regular expressions
  76. 'no-ex-assign': 2, // disallow assigning to the exception in a catch block
  77. 'no-extra-boolean-cast': 2, // disallow double-negation boolean casts in a boolean context
  78. 'no-extra-parens': 0, // disallow unnecessary parentheses (off by default)
  79. 'no-extra-semi': 2, // disallow unnecessary semicolons
  80. 'no-func-assign': 2, // disallow overwriting functions written as function declarations
  81. 'no-inner-declarations': 2, // disallow function or variable declarations in nested blocks
  82. 'no-invalid-regexp': 2, // disallow invalid regular expression strings in the RegExp constructor
  83. 'no-irregular-whitespace': 2, // disallow irregular whitespace outside of strings and comments
  84. 'no-negated-in-lhs': 2, // disallow negation of the left operand of an in expression
  85. 'no-obj-calls': 2, // disallow the use of object properties of the global object (Math and JSON) as functions
  86. 'no-regex-spaces': 2, // disallow multiple spaces in a regular expression literal
  87. 'no-sparse-arrays': 2, // disallow sparse arrays
  88. 'no-unreachable': 2, // disallow unreachable statements after a return, throw, continue, or break statement
  89. 'quote-props': 0, // disallow reserved words being used as object literal keys (off by default)
  90. 'use-isnan': 2, // disallow comparisons with the value NaN
  91. 'valid-jsdoc': 2, // Ensure JSDoc comments are valid (off by default)
  92. 'valid-typeof': 2, // Ensure that the results of typeof are compared against a valid string
  93. //
  94. // Best Practices
  95. //
  96. // These are rules designed to prevent you from making mistakes.
  97. // They either prescribe a better way of doing something or help you avoid footguns.
  98. //
  99. 'block-scoped-var': 0, // treat var statements as if they were block scoped (off by default). 0: deep destructuring is not compatible https://github.com/eslint/eslint/issues/1863
  100. 'complexity': 0, // specify the maximum cyclomatic complexity allowed in a program (off by default)
  101. 'consistent-return': 0, // require return statements to either always or never specify values
  102. 'curly': 2, // specify curly brace conventions for all control statements
  103. 'default-case': 0, // require default case in switch statements (off by default)
  104. 'dot-notation': 2, // encourages use of dot notation whenever possible
  105. 'eqeqeq': 2, // require the use of === and !==
  106. 'guard-for-in': 2, // make sure for-in loops have an if statement (off by default)
  107. 'no-alert': 2, // disallow the use of alert, confirm, and prompt
  108. 'no-caller': 2, // disallow use of arguments.caller or arguments.callee
  109. 'no-div-regex': 2, // disallow division operators explicitly at beginning of regular expression (off by default)
  110. 'no-else-return': 2, // disallow else after a return in an if (off by default)
  111. 'no-eq-null': 2, // disallow comparisons to null without a type-checking operator (off by default)
  112. 'no-eval': 2, // disallow use of eval()
  113. 'no-extend-native': 2, // disallow adding to native types
  114. 'no-extra-bind': 2, // disallow unnecessary function binding
  115. 'no-fallthrough': 2, // disallow fallthrough of case statements
  116. 'no-floating-decimal': 2, // disallow the use of leading or trailing decimal points in numeric literals (off by default)
  117. 'no-implied-eval': 2, // disallow use of eval()-like methods
  118. 'no-iterator': 2, // disallow usage of __iterator__ property
  119. 'no-labels': 2, // disallow use of labeled statements
  120. 'no-lone-blocks': 2, // disallow unnecessary nested blocks
  121. 'no-loop-func': 2, // disallow creation of functions within loops
  122. 'no-multi-spaces': 2, // disallow use of multiple spaces
  123. 'no-multi-str': 2, // disallow use of multiline strings
  124. 'no-native-reassign': 2, // disallow reassignments of native objects
  125. 'no-new': 2, // disallow use of new operator when not part of the assignment or comparison
  126. 'no-new-func': 2, // disallow use of new operator for Function object
  127. 'no-new-wrappers': 2, // disallows creating new instances of String,Number, and Boolean
  128. 'no-octal': 2, // disallow use of octal literals
  129. 'no-octal-escape': 2, // disallow use of octal escape sequences in string literals, such as var foo = 'Copyright \251';
  130. 'no-param-reassign': 0, // disallow reassignment of function parameters (off by default)
  131. 'no-process-env': 0, // disallow use of process.env (off by default)
  132. 'no-proto': 2, // disallow usage of __proto__ property
  133. 'no-redeclare': 2, // disallow declaring the same variable more then once
  134. 'no-return-assign': 2, // disallow use of assignment in return statement
  135. 'no-script-url': 2, // disallow use of javascript: urls.
  136. 'no-self-compare': 2, // disallow comparisons where both sides are exactly the same (off by default)
  137. 'no-sequences': 2, // disallow use of comma operator
  138. 'no-throw-literal': 2, // restrict what can be thrown as an exception (off by default)
  139. 'no-unused-expressions': [2, {'allowShortCircuit': true, 'allowTernary': true}], // disallow usage of expressions in statement position
  140. 'no-void': 0, // disallow use of void operator (off by default)
  141. 'no-warning-comments': [0, {'terms': ['todo', 'fixme'], 'location': 'start'}], // disallow usage of configurable warning terms in comments': 2, // e.g. TODO or FIXME (off by default)
  142. 'no-with': 2, // disallow use of the with statement
  143. 'radix': 2, // require use of the second argument for parseInt() (off by default)
  144. 'vars-on-top': 2, // requires to declare all vars on top of their containing scope (off by default)
  145. 'wrap-iife': 2, // require immediate function invocation to be wrapped in parentheses (off by default)
  146. 'yoda': 2, // require or disallow Yoda conditions
  147. //
  148. // Strict Mode
  149. //
  150. // These rules relate to using strict mode.
  151. //
  152. 'strict': 0, // controls location of Use Strict Directives. 0: required by `babel-eslint`
  153. //
  154. // Variables
  155. //
  156. // These rules have to do with variable declarations.
  157. //
  158. 'no-catch-shadow': 2, // disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
  159. 'no-delete-var': 2, // disallow deletion of variables
  160. 'no-label-var': 2, // disallow labels that share a name with a variable
  161. 'no-shadow': 2, // disallow declaration of variables already declared in the outer scope
  162. 'no-shadow-restricted-names': 2, // disallow shadowing of names such as arguments
  163. 'no-undef': 2, // disallow use of undeclared variables unless mentioned in a /*global */ block
  164. 'no-undef-init': 2, // disallow use of undefined when initializing variables
  165. 'no-undefined': 2, // disallow use of undefined variable (off by default)
  166. 'no-unused-vars': [2, { // disallow declaration of variables that are not used in the code
  167. ignoreRestSiblings: true,
  168. args: 'none' // allow unused function arguments
  169. }],
  170. 'no-use-before-define': [2, { "functions": false }], // disallow use of variables before they are defined
  171. //
  172. // Stylistic Issues.
  173. //
  174. // These rules are purely matters of style and are quite subjective.
  175. //
  176. 'array-bracket-spacing': [2, 'never'],
  177. 'indent': [2, 2, { SwitchCase: 1 }], // this option sets a specific tab width for your code (off by default)
  178. 'brace-style': [2, 'stroustrup', {'allowSingleLine': true}],
  179. 'camelcase': 1, // require camel case names
  180. 'comma-spacing': [1, {'before': false, 'after': true}], // enforce spacing before and after comma
  181. 'comma-style': [1, 'last'], // enforce one true comma style (off by default)
  182. 'computed-property-spacing': [2, 'never'],
  183. 'consistent-this': [1, 'that'], // enforces consistent naming when capturing the current execution context (off by default)
  184. 'eol-last': 2, // enforce newline at the end of file, with no multiple empty lines
  185. 'func-names': 0, // require function expressions to have a name (off by default)
  186. 'func-style': 0, // enforces use of function declarations or expressions (off by default)
  187. 'jsx-quotes': [1, 'prefer-double'],
  188. 'key-spacing': [1, {'beforeColon': false, 'afterColon': true}], // enforces spacing between keys and values in object literal properties
  189. 'keyword-spacing': [2, { before: true, after: true }], // require a space after return, throw, and case
  190. 'linebreak-style': [2, 'unix'],
  191. 'max-nested-callbacks': [1, 3], // specify the maximum depth callbacks can be nested (off by default)
  192. 'new-cap': [1, {'newIsCap': true, 'capIsNew': false}], // require a capital letter for constructors
  193. 'new-parens': 1, // disallow the omission of parentheses when invoking a constructor with no arguments
  194. 'newline-after-var': 0, // allow/disallow an empty newline after var statement (off by default)
  195. 'no-array-constructor': 1, // disallow use of the Array constructor
  196. 'no-inline-comments': 0, // disallow comments inline after code (off by default)
  197. 'no-lonely-if': 1, // disallow if as the only statement in an else block (off by default)
  198. 'no-mixed-spaces-and-tabs': 1, // disallow mixed spaces and tabs for indentation
  199. 'no-multiple-empty-lines': [1, {'max': 2}], // disallow multiple empty lines (off by default)
  200. 'no-nested-ternary': 1, // disallow nested ternary expressions (off by default)
  201. 'no-new-object': 1, // disallow use of the Object constructor
  202. 'no-spaced-func': 1, // disallow space between function identifier and application
  203. 'no-ternary': 0, // disallow the use of ternary operators (off by default)
  204. 'no-trailing-spaces': 1, // disallow trailing whitespace at the end of lines
  205. 'no-underscore-dangle': 0, // disallow dangling underscores in identifiers
  206. 'object-curly-spacing': [2, 'always'],
  207. 'one-var': [2, 'never'], // allow just one var statement per function (off by default)
  208. 'operator-assignment': [1, 'never'], // require assignment operator shorthand where possible or prohibit it entirely (off by default)
  209. 'padded-blocks': [1, 'never'], // enforce padding within blocks (off by default)
  210. 'quotes': [1, 'single'], // specify whether double or single quotes should be used
  211. 'semi': [2, 'always'], // require or disallow use of semicolons instead of ASI
  212. 'semi-spacing': [1, { 'before': false, 'after': true }], // enforce spacing before and after semicolons
  213. 'sort-vars': 0, // sort variables within the same declaration block (off by default)
  214. 'space-before-blocks': [1, 'always'], // require or disallow space before blocks (off by default)
  215. 'space-before-function-paren': [1, {'anonymous': 'always', 'named': 'never'}], // require or disallow space before function opening parenthesis (off by default)
  216. 'space-in-parens': [1, 'never'], // require or disallow spaces inside parentheses (off by default)
  217. 'space-infix-ops': [2, {'int32Hint': true}], // require spaces around operators
  218. 'space-unary-ops': [1, {'words': true, 'nonwords': false}], // Require or disallow spaces before/after unary operators (words on by default, nonwords off by default)
  219. 'spaced-comment': [1, 'always'], // require or disallow a space immediately following the // in a line comment (off by default)
  220. 'wrap-regex': 0, // require regex literals to be wrapped in parentheses (off by default)
  221. //
  222. // ECMAScript 6
  223. //
  224. // These rules are only relevant to ES6 environments and are off by default.
  225. //
  226. 'no-var': 2, // require let or const instead of var (off by default)
  227. 'generator-star-spacing': [2, 'before'], // enforce the spacing around the * in generator functions (off by default)
  228. //
  229. // Legacy
  230. //
  231. // The following rules are included for compatibility with JSHint and JSLint.
  232. // While the names of the rules may not match up with the JSHint/JSLint counterpart,
  233. // the functionality is the same.
  234. //
  235. 'max-depth': [2, 3], // specify the maximum depth that blocks can be nested (off by default)
  236. 'max-len': [2, 200, 2], // specify the maximum length of a line in your program (off by default)
  237. 'max-params': [2, 10], // limits the number of parameters that can be used in the function declaration. (off by default)
  238. 'max-statements': 0, // specify the maximum number of statement allowed in a function (off by default)
  239. 'no-bitwise': 0, // disallow use of bitwise operators (off by default)
  240. 'no-plusplus': 0, // disallow use of unary operators, ++ and -- (off by default)
  241. //
  242. // eslint-plugin-react
  243. //
  244. // React specific linting rules for ESLint
  245. //
  246. 'react/display-name': 0, // Prevent missing displayName in a React component definition
  247. 'react/jsx-no-undef': 2, // Disallow undeclared variables in JSX
  248. 'react/jsx-sort-props': 0, // Enforce props alphabetical sorting
  249. 'react/jsx-uses-react': 2, // Prevent React to be incorrectly marked as unused
  250. 'react/jsx-uses-vars': 2, // Prevent variables used in JSX to be incorrectly marked as unused
  251. 'react/no-did-mount-set-state': 1, // Prevent usage of setState in componentDidMount
  252. 'react/no-did-update-set-state': 1, // Prevent usage of setState in componentDidUpdate
  253. 'react/no-multi-comp': 0, // Prevent multiple component definition per file
  254. 'react/no-unknown-property': 2, // Prevent usage of unknown DOM property
  255. 'react/prop-types': 2, // Prevent missing props validation in a React component definition
  256. 'react/react-in-jsx-scope': 0, // Prevent missing React when using JSX
  257. 'react/self-closing-comp': 2, // Prevent extra closing tags for components without children
  258. 'react/jsx-wrap-multilines': 2 // Prevent missing parentheses around multilines JSX
  259. }
  260. };