Skip to content

Commit eaa4c16

Browse files
committed
chore(eslint): update ESLint config to include ignores for .next directory
1 parent 30c17b1 commit eaa4c16

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

eslint.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
import config from "@squonk/eslint-config";
22

3-
export default config
4-
.map((c) => ({ ...c, ignores: ["**/dist/**"] }))
5-
.slice(0, -1); // Remove the last rule which is for apps
3+
export default [{ ignores: ["**/dist/**"] }, ...config.slice(0, -1)]; // Remove the last rule which is for apps

0 commit comments

Comments
 (0)