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

36 lines
787 B
JSON
Raw Normal View History

2021-10-05 02:05:34 +02:00
{
"env": {
"browser": true,
2021-12-14 16:08:54 +01:00
"commonjs": true,
"jest": true
2021-10-05 02:05:34 +02:00
},
"extends": [
"airbnb-base",
"plugin:cypress/recommended"
2021-10-05 02:05:34 +02:00
],
2021-12-23 20:41:39 +01:00
"parserOptions": {
"ecmaVersion": 11
},
"globals": {
// designer is a global currently used as a hack. Remove this when fixing the hack.
"designer": true
},
2021-10-06 04:08:42 +02:00
"rules": {
2021-12-14 16:08:54 +01:00
"no-underscore-dangle": "off",
2021-12-03 19:58:25 +01:00
"no-plusplus": "off",
2021-12-19 09:44:08 +01:00
"no-param-reassign": "off",
2021-12-23 20:55:07 +01:00
"max-len": [1,300],
"class-methods-use-this": "off",
2021-12-23 20:55:07 +01:00
"no-console" : "off",
2021-12-23 20:58:50 +01:00
"no-unused-vars": ["error", { "args": "none" }]
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.common.js"
}
}
}
}