forked from dicarlo2/neotracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
29 lines (29 loc) · 850 Bytes
/
.eslintrc.json
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
{
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:flowtype/recommended", "prettier", "prettier/flowtype", "prettier/react", "plugin:eslint-comments/recommended"],
"plugins": ["flowtype"],
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {},
"rules": {
"no-console": 2,
"no-underscore-dangle": 0,
"react/jsx-filename-extension": 0,
"react/jsx-props-no-spreading": 0,
"react/state-in-constructor": 0,
"react/prop-types": 0,
"react/sort-comp": 0,
"max-classes-per-file": 0,
"no-restricted-syntax": 0,
"class-methods-use-this": 0,
"camelcase": 0,
"jsx-a11y/anchor-is-valid": 0,
"eslint-comments/no-unlimited-disable": 0,
"eslint-comments/disable-enable-pair": 0,
"react/destructuring-assignment": 0,
"lines-between-class-members": 0
}
}