spookvooper-api/.eslintrc.json

22 lines
390 B
JSON
Raw Normal View History

2020-09-16 19:32:56 +00:00
{
"env": {
2020-12-08 20:50:31 +00:00
"browser": true,
2020-11-28 00:23:10 +00:00
"commonjs": true,
"es2021": true,
2020-09-16 19:32:56 +00:00
"node": true
},
2020-12-08 20:50:31 +00:00
"extends": [
"standard-with-typescript"
],
"parser": "@typescript-eslint/parser",
2020-09-16 19:32:56 +00:00
"parserOptions": {
2020-12-08 20:50:31 +00:00
"ecmaVersion": 12,
"project": "./tsconfig.json"
2020-09-16 19:32:56 +00:00
},
2020-12-08 20:50:31 +00:00
"plugins": [
"@typescript-eslint"
],
2020-09-16 19:32:56 +00:00
"rules": {
}
}