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

30 lines
609 B
JSON
Raw Normal View History

2021-10-05 01:56:40 +02:00
{
"env": {
"browser": true,
"commonjs": true
},
"extends": [
"airbnb-base",
"plugin:cypress/recommended"
2021-10-06 04:08:42 +02:00
],
"globals":{
2021-12-03 07:31:19 +01:00
"Class": "readonly"
},
2021-10-06 04:08:42 +02:00
"rules": {
"no-restricted-syntax": "off",
"no-plusplus": "off",
"max-len": [1,250],
"import/no-extraneous-dependencies": ["warn", {
"packageDir": ["./"],
"devDependencies": ["!cypress/**/*.js"]
}]
},
"settings": {
"import/resolver": {
"webpack": {
"config": "./webpack.common.js"
}
}
}
}