2021-10-04 16:56:40 -07:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
2021-12-19 09:07:01 -08:00
|
|
|
"es6": true
|
2021-10-04 16:56:40 -07:00
|
|
|
},
|
|
|
|
"extends": [
|
2021-12-02 00:41:56 +00:00
|
|
|
"airbnb-base",
|
|
|
|
"plugin:cypress/recommended"
|
2021-10-05 19:08:42 -07:00
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"no-restricted-syntax": "off",
|
2021-12-14 17:06:09 +00:00
|
|
|
"no-underscore-dangle": "off",
|
2021-12-02 00:41:56 +00:00
|
|
|
"no-plusplus": "off",
|
|
|
|
"max-len": [1,250],
|
|
|
|
"import/no-extraneous-dependencies": ["warn", {
|
|
|
|
"packageDir": ["./"],
|
|
|
|
"devDependencies": ["!cypress/**/*.js"]
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
|
|
|
"webpack": {
|
|
|
|
"config": "./webpack.common.js"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|