Skip to content

Commit 4146a70

Browse files
committed
fix: ignore .mjs files in eslint config
1 parent a1b0c2d commit 4146a70

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
@@ -5,7 +5,7 @@ import reactRefresh from 'eslint-plugin-react-refresh';
55
import tseslint from 'typescript-eslint';
66

77
export default tseslint.config(
8-
{ ignores: ['dist', 'dist-*', 'coverage', '.worktrees', '**/node_modules/**'] },
8+
{ ignores: ['dist', 'dist-*', 'coverage', '.worktrees', '**/node_modules/**', '*.mjs'] },
99
js.configs.recommended,
1010
...tseslint.configs.recommended,
1111
{

0 commit comments

Comments
 (0)