mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-11 01:43:23 +01:00
32 lines
696 B
JSON
32 lines
696 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true
|
|
},
|
|
"extends": [
|
|
"airbnb-base",
|
|
"plugin:cypress/recommended"
|
|
],
|
|
"globals":{
|
|
"Class": "readonly",
|
|
"$": "readonly",
|
|
"$assert": "readonly",
|
|
"$defined": "readonly",
|
|
"$msg": "readonly",
|
|
"_": "readonly"
|
|
},
|
|
"plugins": ["only-warn"],
|
|
"rules": {
|
|
"no-underscore-dangle": "off",
|
|
"no-plusplus": "off",
|
|
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["!cypress/**/*.js"]}]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"webpack": {
|
|
"config": "./webpack.common.js"
|
|
}
|
|
}
|
|
}
|
|
}
|