-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintignore
52 lines (43 loc) · 930 Bytes
/
.eslintignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Ignore the node_modules directory, where all third-party packages are installed
node_modules/
# Ignore the build directory, if you have one
build/
dist/
.out/
**/build/**/*.js
**/.next/**/*.js
**/build/**/*.ts
**/.next/**/*.ts
# Ignore all configuration files in the root directory
# This includes ESLint, Prettier, Babel, Stylelint, and other config files
/*.config.js
/*.config.cjs
/*.config.mjs
/.eslintrc.js
/.prettierrc.js
/.babelrc.js
/.stylelintrc.js
# Ignore environment variable files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore lock files
package-lock.json
pnpm-lock.yaml
yarn.lock
# Ignore log files
npm-debug.log
pnpm-error.log
pnpm-debug.log
# Ignore coverage directory used by testing tools
coverage/
# Ignore temporary files or directories
.DS_Store
Thumbs.db
# Ignore IDE specific files
/.vscode/
/.idea/
/*.iml
# Ignore any other unwanted files or directories