Skip to content

Commit 0d4c30f

Browse files
Eslint Setup
1 parent 068a193 commit 0d4c30f

File tree

8 files changed

+13712
-172
lines changed

8 files changed

+13712
-172
lines changed

.eslintrc.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"extends": [
3+
"plugin:react/recommended",
4+
"airbnb-base"
5+
],
6+
"parserOptions": {
7+
"ecmaFeatures": {
8+
"jsx": true
9+
},
10+
"ecmaVersion": 2018,
11+
"sourceType": "module"
12+
},
13+
"plugins": [
14+
"import",
15+
"react",
16+
"jsx-a11y",
17+
"babel"
18+
],
19+
"parser": "babel-eslint",
20+
"env": {
21+
"browser": true,
22+
"node": true,
23+
"es6": true
24+
},
25+
"rules": {
26+
"class-methods-use-this": "off"
27+
}
28+
}

0 commit comments

Comments
 (0)