upend/tools/upend_js/.eslintrc.json
Tomáš Mládek 6e78fa250c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix(jslib): 🚨 fix lint fail due to missing type-only imports
2023-10-07 13:13:00 +02:00

24 lines
573 B
JSON

{
"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"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/consistent-type-exports": "error",
"@typescript-eslint/consistent-type-imports": "error"
}
}