eslint.js 6.38 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
/**
 * Copyright (c) 2015-present, Facebook, Inc.
 * All rights reserved.
 *
 * This source code is licensed under the BSD-style license found in the
 * LICENSE file in the root directory of this source tree. An additional grant
 * of patent rights can be found in the PATENTS file in the same directory.
 */

// Inspired by https://github.com/airbnb/javascript but less opinionated.

12
13
14
15
16
17
18
19
// We use eslint-loader so even warnings are very visibile.
// This is why we only use "WARNING" level for potential errors,
// and we don't use "ERROR" level at all.

// In the future, we might create a separate list of rules for production.
// It would probably be more strict.

var WARNING = 1;
20
21
22
23

module.exports = {
  root: true,

24
25
  parser: 'babel-eslint',

26
  // import plugin is termporarily disabled, scroll below to see why
27
  plugins: ['react'/*, 'import'*/, 'jsx-a11y'],
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

  env: {
    es6: true,
    commonjs: true,
    browser: true
  },

  parserOptions: {
    ecmaVersion: 6,
    sourceType: 'module',
    ecmaFeatures: {
      jsx: true,
      generators: true,
      experimentalObjectRestSpread: true
    }
  },

  settings: {
    'import/ignore': [
      'node_modules',
      '\\.(json|css|jpg|png|gif|eot|svg|ttf|woff|woff2|mp4|webm)$',
    ],
    'import/extensions': ['.js'],
    'import/resolver': {
      node: {
        extensions: ['.js', '.json']
      }
    }
  },

  rules: {
    // http://eslint.org/docs/rules/
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
    'array-callback-return': WARNING,
    'default-case': [WARNING, { commentPattern: '^no default$' }],
    'dot-location': [WARNING, 'property'],
    eqeqeq: [WARNING, 'allow-null'],
    'guard-for-in': WARNING,
    'new-cap': [WARNING, { newIsCap: true }],
    'new-parens': WARNING,
    'no-array-constructor': WARNING,
    'no-caller': WARNING,
    'no-cond-assign': [WARNING, 'always'],
    'no-const-assign': WARNING,
    'no-control-regex': WARNING,
    'no-delete-var': WARNING,
    'no-dupe-args': WARNING,
    'no-dupe-class-members': WARNING,
    'no-dupe-keys': WARNING,
    'no-duplicate-case': WARNING,
    'no-empty-character-class': WARNING,
    'no-empty-pattern': WARNING,
    'no-eval': WARNING,
    'no-ex-assign': WARNING,
    'no-extend-native': WARNING,
    'no-extra-bind': WARNING,
    'no-extra-label': WARNING,
    'no-fallthrough': WARNING,
    'no-func-assign': WARNING,
    'no-implied-eval': WARNING,
    'no-invalid-regexp': WARNING,
    'no-iterator': WARNING,
    'no-label-var': WARNING,
    'no-labels': [WARNING, { allowLoop: false, allowSwitch: false }],
    'no-lone-blocks': WARNING,
    'no-loop-func': WARNING,
    'no-mixed-operators': [WARNING, {
94
95
96
97
98
99
100
101
      groups: [
        ['&', '|', '^', '~', '<<', '>>', '>>>'],
        ['==', '!=', '===', '!==', '>', '>=', '<', '<='],
        ['&&', '||'],
        ['in', 'instanceof']
      ],
      allowSamePrecedence: false
    }],
102
103
104
105
106
107
108
109
110
111
112
113
    'no-multi-str': WARNING,
    'no-native-reassign': WARNING,
    'no-negated-in-lhs': WARNING,
    'no-new-func': WARNING,
    'no-new-object': WARNING,
    'no-new-symbol': WARNING,
    'no-new-wrappers': WARNING,
    'no-obj-calls': WARNING,
    'no-octal': WARNING,
    'no-octal-escape': WARNING,
    'no-redeclare': WARNING,
    'no-regex-spaces': WARNING,
114
    'no-restricted-syntax': [
115
      WARNING,
116
117
118
      'LabeledStatement',
      'WithStatement',
    ],
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
    'no-return-assign': WARNING,
    'no-script-url': WARNING,
    'no-self-assign': WARNING,
    'no-self-compare': WARNING,
    'no-sequences': WARNING,
    'no-shadow-restricted-names': WARNING,
    'no-sparse-arrays': WARNING,
    'no-this-before-super': WARNING,
    'no-throw-literal': WARNING,
    'no-undef': WARNING,
    'no-unexpected-multiline': WARNING,
    'no-unreachable': WARNING,
    'no-unused-expressions': WARNING,
    'no-unused-labels': WARNING,
    'no-unused-vars': [WARNING, { vars: 'local', args: 'none' }],
    'no-use-before-define': [WARNING, 'nofunc'],
    'no-useless-computed-key': WARNING,
    'no-useless-concat': WARNING,
    'no-useless-constructor': WARNING,
    'no-useless-escape': WARNING,
    'no-useless-rename': [WARNING, {
140
141
142
143
      ignoreDestructuring: false,
      ignoreImport: false,
      ignoreExport: false,
    }],
144
145
146
147
148
149
150
151
152
153
    'no-with': WARNING,
    'no-whitespace-before-property': WARNING,
    'operator-assignment': [WARNING, 'always'],
    radix: WARNING,
    'require-yield': WARNING,
    'rest-spread-spacing': [WARNING, 'never'],
    strict: [WARNING, 'never'],
    'unicode-bom': [WARNING, 'never'],
    'use-isnan': WARNING,
    'valid-typeof': WARNING,
154
155
156

    // https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/

157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
    // TODO: import rules are temporarily disabled because they don't play well
    // with how eslint-loader only checks the file you change. So if module A
    // imports module B, and B is missing a default export, the linter will
    // record this as an issue in module A. Now if you fix module B, the linter
    // will not be aware that it needs to re-lint A as well, so the error
    // will stay until the next restart, which is really confusing.

    // This is probably fixable with a patch to eslint-loader.
    // When file A is saved, we want to invalidate all files that import it
    // *and* that currently have lint errors. This should fix the problem.

    // 'import/default': WARNING,
    // 'import/export': WARNING,
    // 'import/named': WARNING,
    // 'import/namespace': WARNING,
    // 'import/no-amd': WARNING,
    // 'import/no-duplicates': WARNING,
    // 'import/no-extraneous-dependencies': WARNING,
    // 'import/no-named-as-default': WARNING,
    // 'import/no-named-as-default-member': WARNING,
    // 'import/no-unresolved': [WARNING, { commonjs: true }],
178
179

    // https://github.com/yannickcr/eslint-plugin-react/tree/master/docs/rules
180
181
182
183
    'react/jsx-equals-spacing': [WARNING, 'never'],
    'react/jsx-no-duplicate-props': [WARNING, { ignoreCase: true }],
    'react/jsx-no-undef': WARNING,
    'react/jsx-pascal-case': [WARNING, {
184
185
186
      allowAllCaps: true,
      ignore: [],
    }],
187
188
189
190
191
192
    'react/jsx-uses-react': WARNING,
    'react/jsx-uses-vars': WARNING,
    'react/no-deprecated': WARNING,
    'react/no-direct-mutation-state': WARNING,
    'react/no-is-mounted': WARNING,
    'react/react-in-jsx-scope': WARNING,
193
194
195
196
197
198
199
    'react/require-render-return': WARNING,

    // https://github.com/evcohen/eslint-plugin-jsx-a11y/tree/master/docs/rules
    'jsx-a11y/aria-role': WARNING,
    'jsx-a11y/img-has-alt': WARNING,
    'jsx-a11y/img-redundant-alt': WARNING,
    'jsx-a11y/no-access-key': WARNING
200
201
  }
};