We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8950b28 commit 91455cfCopy full SHA for 91455cf
.eslintrc.json
@@ -4,7 +4,10 @@
4
"commonjs": true,
5
"es6": true
6
},
7
- "extends": "eslint:recommended",
+ "extends": [
8
+ "eslint:recommended",
9
+ "plugin:react/recommended"
10
+ ],
11
"globals": {
12
"Atomics": "readonly",
13
"SharedArrayBuffer": "readonly"
@@ -13,8 +16,8 @@
16
"ecmaVersion": 2018
14
17
15
18
"rules": {
- "indent": ["error", "tab"],
- "linebreak-style": ["error", "windows"],
19
+ "indent": ["error", 2],
20
+ "linebreak-style": ["error", "unix"],
21
"quotes": ["error", "single"],
22
"semi": ["error", "always"]
23
}
0 commit comments