Skip to content
This repository was archived by the owner on Feb 21, 2020. It is now read-only.

Commit 5e37329

Browse files
authored
Merge pull request #151 from BoostIO/feature-eslint
Feature eslint
2 parents 2b8c4b7 + 525938a commit 5e37329

19 files changed

+1493
-1085
lines changed

.eslintrc

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": ["standard", "standard-jsx", "plugin:react/recommended"],
3+
"plugins": ["react"],
4+
"rules": {
5+
"no-useless-escape": 0,
6+
"prefer-const": "warn",
7+
"no-unused-vars": "warn",
8+
"no-undef": "warn",
9+
"no-lone-blocks": "warn",
10+
"react/prop-types": 0,
11+
"react/no-string-refs": 0,
12+
"react/no-find-dom-node": "warn",
13+
"react/no-render-return-value": "warn",
14+
"react/no-deprecated": "warn"
15+
},
16+
"globals": {
17+
"FileReader": true,
18+
"localStorage": true,
19+
"fetch": true
20+
}
21+
}

0 commit comments

Comments
 (0)