forked from Skandar-Ln/SimpleChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
38 lines (38 loc) · 1.22 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
module.exports = {
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": "react-app",
"rules": {
"semi": [0],
"no-extra-semi": [0],
"react/jsx-filename-extension": [0],
"react/jsx-indent": [0],
"react/destructuring-assignment": [0],
"no-useless-constructor": [0],
"react/no-typos": [0],
"no-console": [0],
"react/require-default-props": [0],
"react/prefer-stateless-function": [0],
"no-unused-vars": [0],
"indent": [0],
"max-len": [0],
"react/forbid-prop-types": [0],
"no-nested-ternary": [0],
"class-methods-use-this": [0],
"react/prop-types": [0],
"camelcase": [0],
"jsx-a11y/click-events-have-key-events": [0],
"jsx-a11y/no-static-element-interactions": [0],
"jsx-a11y/alt-text": [0],
"react/jsx-no-target-blank": [0],
"eqeqeq": [0],
"no-useless-escape": [0]
}
};