Skip to content

Commit 1b63b51

Browse files
committed
fix: remove wildcard from ignore dist in eslint
1 parent 0b09cf2 commit 1b63b51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import solid from 'eslint-plugin-solid'
77
import tseslint from 'typescript-eslint'
88

99
export default defineConfig(
10-
{ ignores: ['dist*', 'coverage', 'node_modules'] },
10+
{ ignores: ['dist', 'coverage', 'node_modules'] },
1111
{
1212
extends: [js.configs.recommended, ...tseslint.configs.recommended],
1313
files: ['**/*.{js,jsx,ts,tsx}'],

0 commit comments

Comments
 (0)