2021-10-04 17:05:34 -07:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2021-12-14 15:08:54 +00:00
|
|
|
"commonjs": true,
|
|
|
|
"jest": true
|
2021-10-04 17:05:34 -07:00
|
|
|
},
|
|
|
|
"extends": [
|
2021-12-02 00:41:56 +00:00
|
|
|
"airbnb-base",
|
|
|
|
"plugin:cypress/recommended"
|
2021-10-04 17:05:34 -07:00
|
|
|
],
|
|
|
|
"plugins": ["only-warn"],
|
2021-10-05 19:08:42 -07:00
|
|
|
"rules": {
|
2021-12-14 15:08:54 +00:00
|
|
|
"no-underscore-dangle": "off",
|
2021-12-03 10:58:25 -08:00
|
|
|
"no-plusplus": "off",
|
2021-12-13 21:30:37 +00:00
|
|
|
"class-methods-use-this": "off",
|
2021-12-02 00:41:56 +00:00
|
|
|
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!cypress/**/*.js"]}]
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
|
|
|
"webpack": {
|
|
|
|
"config": "./webpack.common.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|