forked from unfoldingWord/word-aligner-rcl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 823 Bytes
/
.eslintrc
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
{
"extends": ["eslint:recommended", "plugin:react/recommended"],
"plugins": [
"react",
"jest"
],
"settings": {
"react": {
"createClass": "createReactClass",
"pragma": "React",
"version": "15.0"
}
},
"rules": {
"react/display-name": "off",
"no-undef": "warn",
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/no-unescaped-entities": "warn",
"react/no-find-dom-node": "warn",
"semi": ["error", "always", {"omitLastInOneLineBlock": true}],
"no-console": "off",
"no-async-promise-executor":"off"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest/globals": true
}
}