upend/tools/upend_js/.eslintrc.json

25 lines
573 B
JSON
Raw Normal View History

2022-01-28 18:58:34 +01:00
{
"ignorePatterns": ["**/*.js"],
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
2022-01-28 18:58:34 +01:00
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/consistent-type-exports": "error",
"@typescript-eslint/consistent-type-imports": "error"
2022-01-28 18:58:34 +01:00
}
}