-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintignore
87 lines (70 loc) · 1.24 KB
/
.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Ignore node_modules directory
node_modules
# Ignore build directories
dist
build
# Ignore Vite specific directories and files
.vite
.vite_cache
# Ignore environment variables
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Ignore logs
*.log
# Ignore IDE and editor configuration files
.idea
.vscode
*.sublime-project
*.sublime-workspace
# Ignore OS-specific files
.DS_Store
Thumbs.db
# Ignore public directory
public
# Ignore Tailwind CSS configuration files
tailwind.config.js
tailwind.config.cjs
tailwind.config.ts
# Ignore PostCSS configuration files
postcss.config.js
postcss.config.cjs
postcss.config.ts
# Ignore all configuration and metadata files
*.config.js
*.config.cjs
*.config.ts
*.config.json
*.config.yml
# Ignore test coverage directory
coverage
# Ignore compiled TypeScript build info file
*.tsbuildinfo
# Ignore images and other binary files
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.ico
*.webp
# Ignore specific file types
*.min.js
*.min.css
# Ignore linting configuration files to avoid self-linting
.eslintrc
.eslintrc.js
.eslintrc.json
.eslintrc.yml
.eslintignore
.prettierrc
.prettierrc.js
.prettierrc.json
.prettierrc.yml
.prettierignore
# Ignore assets directory
assets
# Ignore static files directory
static