forked from ungdev/UA-bouffe-old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
37 lines (37 loc) · 804 Bytes
/
Copy path.eslintrc
File metadata and controls
37 lines (37 loc) · 804 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
34
35
36
37
{
parser: "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"rules": {
"arrow-parens": 1,
"comma-dangle": [1, "never"],
"curly": 1,
"eqeqeq": [1, "always"],
"linebreak-style": [1, "unix"],
"new-parens": 1,
"no-console": 1,
"no-debugger": 1,
"no-dupe-keys": 1,
"no-empty": 1,
"no-eval": 1,
"no-trailing-spaces": 1,
"no-undef": 1,
"no-unreachable": 1,
"no-unsafe-finally": 1,
"no-unused-expressions": 1,
"no-unused-vars": 1,
"no-use-before-define": 1,
"no-var": 1,
"use-isnan": 1,
"react/jsx-indent": [1, 2],
"react/jsx-indent-props": [1, 2],
"react/jsx-no-undef": [1]
}
}