forked from happo/happo.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
33 lines (31 loc) · 681 Bytes
/
Copy path.eslintrc.js
File metadata and controls
33 lines (31 loc) · 681 Bytes
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
module.exports = {
extends: 'airbnb',
parser: 'babel-eslint',
plugins: ['jest'],
env: {
'jest/globals': true,
},
rules: {
'function-paren-newline': 0,
'react/jsx-filename-extension': 0,
'object-curly-newline': 0,
'no-multi-assign': 0,
'no-param-reassign': 0,
'consistent-return': 0,
'no-console': 0,
'arrow-parens': 0,
'prefer-destructuring': 0,
'prefer-template': 0,
'global-require': 0,
'no-restricted-syntax': 0,
'react/no-multi-comp': 0,
'class-methods-use-this': 0,
'no-nested-ternary': 0,
'no-mixed-operators': 0,
indent: 0,
},
globals: {
document: true,
window: true,
},
};