wisemapping-frontend/packages/mindplot/.eslintrc.json
Paulo Gustavo Veiga 6cb88b9303 Fix inspections
2021-12-19 00:44:08 -08:00

27 lines
603 B
JSON

{
"env": {
"browser": true,
"commonjs": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:cypress/recommended"
],
"plugins": ["only-warn"],
"rules": {
"no-underscore-dangle": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"class-methods-use-this": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!cypress/**/*.js"]}]
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.common.js"
}
}
}
}