mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
30 lines
635 B
JSON
30 lines
635 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true
|
|
},
|
|
"extends": [
|
|
"airbnb-base",
|
|
"plugin:cypress/recommended"
|
|
],
|
|
"globals":{
|
|
"Class": "readonly",
|
|
"$": "readonly",
|
|
"$msg": "readonly",
|
|
"_": "readonly"
|
|
},
|
|
"plugins": ["only-warn"],
|
|
"rules": {
|
|
"no-plusplus": "off",
|
|
"class-methods-use-this": "off",
|
|
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!cypress/**/*.js"]}]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "./webpack.common.js"
|
|
}
|
|
}
|
|
}
|
|
}
|