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

22 lines
418 B
JSON
Raw Normal View History

2021-10-03 19:30:15 +02:00
{
"env": {
"browser": true,
2021-10-03 19:49:20 +02:00
"commonjs": true,
2021-10-03 19:30:15 +02:00
"es2021": true
},
"extends": [
2021-10-03 19:49:20 +02:00
"airbnb-base"
2021-10-03 19:30:15 +02:00
],
"parserOptions": {
2021-10-03 19:49:20 +02:00
"ecmaVersion": 12
},
"rules": {
2021-10-03 19:55:57 +02:00
"max-len": [0, 200],
"no-underscore-dangle": "off",
"no-restricted-syntax": "off",
"guard-for-in": "off",
"no-plusplus": "off"
},
"plugins": ["only-warn"]
}