mirror of
https://github.com/GeorgeSG/lovelace-time-picker-card.git
synced 2025-12-28 21:00:29 +00:00
19 lines
712 B
Plaintext
19 lines
712 B
Plaintext
{
|
|
"parser": "@typescript-eslint/parser", // Specifies the ESLint parser
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended", // Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
|
],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018, // Allows for the parsing of modern ECMAScript features
|
|
"sourceType": "module", // Allows for the use of imports
|
|
"experimentalDecorators": true
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/camelcase": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0,
|
|
"@typescript-eslint/explicit-function-return-type": [1, { "allowExpressions": true }],
|
|
"@typescript-eslint/no-namespace": 0,
|
|
},
|
|
"ignorePatterns": ["dist/", "node_modules/", "*.js"]
|
|
}
|