Skip to content

Commit 0944e6f

Browse files
committed
intentionally induce lint issue
1 parent ca4c8d1 commit 0944e6f

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

eslint.config.mjs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import globals from 'globals';
2+
import pluginJs from '@eslint/js';
3+
import tseslint from 'typescript-eslint';
4+
5+
/** @type {import('eslint').Linter.Config[]} */
6+
export default [
7+
{ files: ['**/*.{js,mjs,cjs,ts,tsx,jsx}'] },
8+
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
9+
pluginJs.configs.recommended,
10+
...tseslint.configs.recommended,
11+
];

0 commit comments

Comments
 (0)