2018-04-17 21:38:56 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"extends": [
|
2018-05-10 18:20:20 +00:00
|
|
|
"wpcalypso/react",
|
|
|
|
"plugin:jsx-a11y/recommended"
|
|
|
|
],
|
|
|
|
"plugins": [
|
2018-05-16 14:59:03 +00:00
|
|
|
"jsx-a11y",
|
|
|
|
"jest"
|
2018-04-17 21:38:56 +00:00
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2018-05-16 14:59:03 +00:00
|
|
|
"jest/globals": true,
|
2018-04-17 21:38:56 +00:00
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"jQuery": true,
|
|
|
|
"wp": true,
|
2018-05-10 18:35:55 +00:00
|
|
|
"wpApiSettings": true,
|
|
|
|
"wcSettings": true
|
2018-04-17 21:38:56 +00:00
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"camelcase": 0,
|
2018-06-01 14:35:18 +00:00
|
|
|
"indent": 0,
|
2018-04-17 21:38:56 +00:00
|
|
|
"max-len": [ 2, { "code": 140 } ],
|
|
|
|
"no-console": 1,
|
|
|
|
"react/no-danger": 0,
|
|
|
|
"react/react-in-jsx-scope": 0,
|
|
|
|
"wpcalypso/import-no-redux-combine-reducers": 0,
|
|
|
|
"wpcalypso/jsx-classname-namespace": 0,
|
2018-05-03 14:15:36 +00:00
|
|
|
"wpcalypso/redux-no-bound-selectors": 1
|
2018-04-17 21:38:56 +00:00
|
|
|
}
|
|
|
|
}
|