Skip to content

Commit eb90d4b

Browse files
ChrisCjugglinmike
andauthored
adds eslint (w3c#66)
* adds eslint * removes eslint and typescript plugins with default rule configs. We can add these back later if needed * Update package.json Co-authored-by: jugglinmike <[email protected]> --------- Co-authored-by: jugglinmike <[email protected]>
1 parent 952bd8d commit eb90d4b

File tree

4 files changed

+1314
-123
lines changed

4 files changed

+1314
-123
lines changed

.eslintignore

-1
This file was deleted.

eslint.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import globals from 'globals';
2+
3+
export default [
4+
{ files: ['**/*.{js,mjs,cjs}'] },
5+
{ languageOptions: { globals: { ...globals.browser, ...globals.node } } },
6+
];

0 commit comments

Comments
 (0)