forked from storybookjs/react-inspector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
32 lines (32 loc) · 757 Bytes
/
.eslintrc.js
File metadata and controls
32 lines (32 loc) · 757 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
module.exports = {
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8
},
"plugins": [
"react",
"jasmine"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:jasmine/recommended"
],
"env": {
"browser": true,
"node": true,
"es6": true,
"jasmine": true
},
"rules": {
"react/prop-types": [0],
"react/display-name": [0],
"jasmine/new-line-before-expect": [0],
"react/no-unescaped-entities": [0]
},
"settings": {
"react": {
"version": "16.8", // React version. "detect" automatically picks the version you have installed.
},
}
};