Skip to content

Commit bc3e057

Browse files
authored
ci(lint): eslint checks to ignore ./dist dir (#97)
1 parent cd84e8c commit bc3e057

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

eslint.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ export default [
1818
...eslintTs.configs.recommended,
1919
eslintConfigPrettierTypeForced,
2020
{
21-
files: ['**/*.{ts,ts,tsx,js,mjs,jsx}'],
21+
ignores: ['dist/**/*'],
22+
},
23+
{
24+
files: ['**/*.{ts,mts,tsx,js,mjs,jsx}'],
2225
plugins: {},
2326
languageOptions: {
2427
globals: { ...globals.browser },

0 commit comments

Comments
 (0)