Skip to content

Commit e6ee767

Browse files
committed
Add .eslintignore file to ignore specific directories and files
1 parent 5ae9dcb commit e6ee767

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.eslintignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Ignore node_modules directory
2+
node_modules/
3+
4+
# Ignore build output directories
5+
dist/
6+
build/
7+
8+
# Ignore Next.js specific directories
9+
.next/
10+
out/
11+
12+
# Ignore configuration files
13+
*.config.js
14+
15+
# Ignore specific files
16+
*.min.js
17+
18+
# Ignore all JavaScript files in a specific directory
19+
public/**/*.js
20+
21+
# Ignore all files in a specific directory
22+
coverage/

0 commit comments

Comments
 (0)