Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintrc.js

This file was deleted.

12 changes: 12 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { defineConfig, globalIgnores } from "eslint/config";
import configWebpack from "eslint-config-webpack";
Comment thread
snitin315 marked this conversation as resolved.
Outdated

export default defineConfig([
globalIgnores(["node_modules", "dist", "coverage", "test/fixtures"]),
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we don't need these ignores, they are default in our eslint configuration

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, right.

{
extends: [configWebpack],
languageOptions: {
sourceType: "module",
},
},
]);
Loading
Loading