-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
39 lines (38 loc) · 889 Bytes
/
.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
const path = require('path');
module.exports = {
env: {
browser: true,
jest: true,
},
parser: 'babel-eslint',
extends: ['airbnb', 'prettier', 'prettier/react'],
plugins: ['prettier', 'chai-friendly', 'json'],
globals: {
log: false,
},
rules: {
'prettier/prettier': [
'error',
{
singleQuote: true,
trailingComma: 'all',
},
],
'jsx-a11y/label-has-for': 0,
'jsx-a11y/anchor-is-valid': ['error', {
'components': ['Link'],
'specialLink': ['to', 'hrefLeft', 'hrefRight'],
'aspects': ['noHref', 'invalidHref', 'preferButton']
}],
'no-unused-expressions': 0,
'react/jsx-no-literals': [1, {'noStrings': false}],
'chai-friendly/no-unused-expressions': 2,
},
settings: {
'import/resolver': {
node: {
paths: [path.resolve(__dirname, 'src')],
},
},
},
};