firenvim/.eslintrc.json
glacambre 32087a049f Handle font-fallback better
Might still not be perfect but should hopefully be better.

Closes #946
2021-04-25 10:08:08 +02:00

34 lines
944 B
JSON

{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"globals": {
"browser": "readonly"
},
"ignorePatterns": ["target/*", "tests/*"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extra-semi": "off",
"no-async-promise-executor": "off",
"no-constant-condition": ["error", { "checkLoops": false }],
"no-inner-declarations": "off",
"no-unused-vars": "off",
"prefer-spread": "off"
}
}