forked from raj-odc-zz/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (40 loc) · 1.18 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
module.exports = {
parser: "babel-eslint",
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
},
extends: "airbnb",
env: {
browser: true,
jest: true,
es6: true
},
plugins: [
'react',
'jsx-a11y',
"import",
],
// check if imports actually resolve
settings: {
'import/resolver': 'webpack',
},
// add your custom rules here
rules: {
// don't require .js extension when importing
'import/extensions': ['error', 'always', { 'js': 'never' }],
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 1,
'no-console': process.env.NODE_ENV === 'production' ? 2 : 1,
// sanity into react linter rules
'react/jsx-filename-extension': [1, { 'extensions': ['.js', '.jsx'] }],
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'react/prop-types': [1, { 'skipUndeclared': true }],
// make jsx-a11y work nice with react router
'jsx-a11y/anchor-is-valid': [ 'error', {
'components': [ 'Link' ],
'specialLink': [ 'to', 'hrefLeft', 'hrefRight' ],
'aspects': [ 'noHref', 'invalidHref', 'preferButton' ],
}],
}
}