wisemapping-frontend/packages/mindplot/.eslintrc.json

30 lines
635 B
JSON
Raw Normal View History

2021-10-05 02:05:34 +02:00
{
"env": {
"browser": true,
"commonjs": true
},
"extends": [
"airbnb-base",
"plugin:cypress/recommended"
2021-10-05 02:05:34 +02:00
],
"globals":{
"Class": "readonly",
"$": "readonly",
"$msg": "readonly",
"_": "readonly"
},
2021-10-05 02:05:34 +02:00
"plugins": ["only-warn"],
2021-10-06 04:08:42 +02:00
"rules": {
2021-12-03 19:58:25 +01:00
"no-plusplus": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!cypress/**/*.js"]}]
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.common.js"
}
}
}
}