fusero-app-boilerplate/.eslintrc.json
2025-04-29 07:51:17 +02:00

28 lines
660 B
JSON

{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"rules": {
"@typescript-eslint/no-explicit-any": "off"
// ,
// "lines-between-class-members": [
// "error",
// "always",
// { "exceptAfterSingleLine": false }
// ],
// "padding-line-between-statements": [
// "error",
// { "blankLine": "always", "prev": "const", "next": "*" }
// ]
}
}