wisemapping-frontend/packages/mindplot/.eslintrc.json
2022-01-31 00:05:22 +00:00

49 lines
1.3 KiB
JSON

{
"parser": "@typescript-eslint/parser",
"env": {
"browser": true,
"commonjs": true,
"jest": true
},
"extends": [
"airbnb-base",
"plugin:cypress/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 11
},
"globals": {
// designer is a global currently used as a hack. Remove this when fixing the hack.
"designer": true
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-underscore-dangle": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"max-len": [1,300],
"class-methods-use-this": "off",
"no-console" : "off",
// codebase contains many this aliases, fix in the future?
"@typescript-eslint/no-this-alias": "off",
// Remove once migration is completed ...
"@typescript-eslint/no-explicit-any": "warn",
"import/extensions": "warn"
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.common.js"
},
"node": {
"extensions": [".js",".ts"]
}
}
}
}