Skip to content

Commit 051fb1e

Browse files
committed
fix slider, spinbox, and input initial values
2 parents 6cf0e34 + 09c03cd commit 051fb1e

12 files changed

+1283
-9780
lines changed

dist/custom-card-features.min.js

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eslint.config.js

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
1-
import { defineConfig } from 'eslint/config';
2-
3-
export default defineConfig([
4-
{
5-
plugins: { '@typescript-eslint': {} },
6-
rules: {
7-
'no-unused-vars': [
8-
'error',
9-
{
10-
argsIgnorePattern: '^_',
11-
varsIgnorePattern: '^_',
12-
},
13-
],
14-
},
15-
ignores: ['node_modules/*', 'dist/*'],
16-
},
17-
]);
1+
import eslint from '@eslint/js';
2+
import { defineConfig } from 'eslint/config';
3+
import tseslint from 'typescript-eslint';
4+
5+
export default defineConfig([
6+
{
7+
extends: [eslint.configs.recommended, tseslint.configs.recommended],
8+
rules: {
9+
'no-unused-vars': 'off',
10+
'@typescript-eslint/no-unused-vars': [
11+
'error',
12+
{
13+
argsIgnorePattern: '^_',
14+
varsIgnorePattern: '^_',
15+
},
16+
],
17+
},
18+
ignores: ['node_modules/*', 'dist/*'],
19+
},
20+
]);

0 commit comments

Comments
 (0)