GoTools/.eslintrc.json

26 lines
429 B
JSON
Raw Normal View History

2021-03-22 02:27:33 +03:00
{
2023-08-06 01:23:45 +03:00
"env": {
"browser": false,
"commonjs": true,
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn"
}
2021-03-22 02:27:33 +03:00
}