2021-10-05 01:56:40 +02:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"commonjs": true
|
|
|
|
},
|
|
|
|
"extends": [
|
2021-12-02 01:41:56 +01:00
|
|
|
"airbnb-base",
|
|
|
|
"plugin:cypress/recommended"
|
2021-10-06 04:08:42 +02:00
|
|
|
],
|
2021-12-02 01:41:56 +01:00
|
|
|
"globals":{
|
2021-12-03 07:31:19 +01:00
|
|
|
"Class": "readonly"
|
2021-12-02 01:41:56 +01:00
|
|
|
},
|
2021-10-06 04:08:42 +02:00
|
|
|
"rules": {
|
2021-12-14 16:08:54 +01:00
|
|
|
"no-underscore-dangle": "off",
|
2021-10-06 04:08:42 +02:00
|
|
|
"no-restricted-syntax": "off",
|
2021-12-14 18:06:09 +01:00
|
|
|
"no-underscore-dangle": "off",
|
2021-12-02 01:41:56 +01: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"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|