workadventure/front/.eslintrc.json

31 lines
718 B
JSON
Raw Normal View History

2020-04-04 16:16:20 +02:00
{
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
2020-06-09 23:12:54 +02:00
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
2020-04-04 16:16:20 +02:00
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
2020-06-09 23:12:54 +02:00
"sourceType": "module",
"project": "./tsconfig.json"
2020-04-04 16:16:20 +02:00
},
"plugins": [
"@typescript-eslint"
],
"rules": {
2020-06-09 23:12:54 +02:00
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "error"
2020-04-04 16:16:20 +02:00
}
2020-06-09 23:12:54 +02:00
}