-
Notifications
You must be signed in to change notification settings - Fork 1
/
.prettierignore
61 lines (46 loc) · 842 Bytes
/
.prettierignore
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
# Ignore build output
dist
# Ignore node modules
node_modules
# Ignore package manager lock files
yarn.lock
package-lock.json
# Ignore TypeScript declaration files
*.d.ts
# Ignore configuration files
*.config.js
*.config.ts
vite.config.ts
# Ignore all JSON files (including allcountries.json)
*.json
# Ignore CSS output
dist/css/vue3-phone-input.css
# Ignore markdown files
*.md
# Ignore environment files
.env*
# Ignore IDE and editor folders
.vscode
.idea
# Ignore OS generated files
.DS_Store
Thumbs.db
# Ignore test files if you have any
**/__tests__/**
**/*.test.ts
**/*.spec.ts
# Ignore any auto-generated files
*.generated.*
# Ignore flags directory
src/flags/**
# Ignore all image files (in case flags are stored in different locations)
*.png
*.jpg
*.jpeg
*.gif
*.svg
*.log
.gitignore
.npmignore
.npmrc
.prettierignore