mirror of
https://github.com/DigiLive/mushroom-strategy.git
synced 2025-06-25 01:21:52 +02:00
* Add Configuration Option: Set card count for horizontal stacks. * Add Brazilian Portuguese language. * Add Valve view. * Add a log message for domain views. * Fix Entities shown twice. * Fix Entities not shown. * Fix Area not found error. * Fix Unable to hide areas. * Fix Home view section split. * Fix filtering on AreaId. * Refactor sorting logic. * Refactor sorting logic of extra_views. * Bump Strategy version to v2.3.3. * Build Distribution.
37 lines
902 B
JSON
37 lines
902 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"es2020": true,
|
|
"node": true
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"project": "./tsconfig.json",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
|
|
"ignorePatterns": ["dist/", "node_modules/", "src/types/homeassistant/", "src/types/lovelace-mushroom/"],
|
|
"overrides": [
|
|
{
|
|
"files": ["webpack.config.ts", "webpack.dev.config.ts"],
|
|
"parserOptions": {
|
|
"project": null
|
|
}
|
|
}
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-empty-function": "warn",
|
|
"@typescript-eslint/no-unused-vars": [
|
|
"warn",
|
|
{
|
|
"argsIgnorePattern": "^_"
|
|
}
|
|
],
|
|
"no-console": "off",
|
|
"no-empty-function": "off",
|
|
"no-unused-vars": "off"
|
|
}
|
|
}
|