File tree 1 file changed +70
-83
lines changed
1 file changed +70
-83
lines changed Original file line number Diff line number Diff line change
1
+ # Ignore all
1
2
*
2
3
3
- # 图片文件
4
- ! * .jpg
5
- ! * .jpeg
6
- ! * .png
7
- ! * .gif
8
- ! * .svg
9
- ! * .webp
10
-
11
- # 保留常见编程语言文件
12
- ! .gitignore
13
- ! .github
14
- ! .gitignore
15
- ! .gitattributes
16
- ! .gitmodules
17
- ! .nojekyll
18
-
19
- # 文本文件
20
- ! * .txt
21
- ! * .md
22
- ! * .json
23
- ! * .rst
24
-
25
- # 保留常见编程语言的源代码文件
26
-
27
- # Python
28
- ! * .py
29
-
30
- # JavaScript / TypeScript
31
- ! * .js
32
- ! * .jsx
33
- ! * .ts
34
- ! * .tsx
35
-
36
- # HTML / CSS / SCSS
37
- ! * .html
38
- ! * .css
39
- ! * .scss
40
- ! * .sass
41
- ! * .less
42
- ! * .vue
43
-
44
- # JSON / YAML
45
- ! * .json
46
- ! * .yml
47
- ! * .yaml
48
-
49
- # Markdown / Text
50
- ! * .md
51
- ! * .txt
52
-
53
- # Java
54
- ! * .java
55
- ! * .clj
56
-
57
- # C / C++
58
- ! * .c
59
- ! * .cpp
60
- ! * .h
61
-
62
- # Go
63
- ! * .go
64
-
65
- # PHP
66
- ! * .php
67
-
68
- # Ruby
69
- ! * .rb
70
-
71
- # Rust
72
- ! * .rs
73
-
74
- # Swift
75
- ! * .swift
76
-
77
- # Kotlin
78
- ! * .kt
79
- ! * .kts
80
-
81
- # Shell scripts
82
- ! * .sh
83
-
84
- # Db
85
- ! * .sql
4
+ # Unignore all with extensions
5
+ ! * . *
6
+
7
+ # Unignore all dirs
8
+ ! * /
9
+
10
+ .DS_Store
11
+
12
+ # Logs
13
+ logs
14
+ * .log
15
+ npm-debug.log *
16
+ yarn-debug.log *
17
+ yarn-error.log *
18
+
19
+ # Runtime data
20
+ pids
21
+ * .pid
22
+ * .seed
23
+ * .pid.lock
24
+
25
+ # Directory for instrumented libs generated by jscoverage/JSCover
26
+ lib-cov
27
+
28
+ # Coverage directory used by tools like istanbul
29
+ coverage
30
+
31
+ # nyc test coverage
32
+ .nyc_output
33
+
34
+ # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
35
+ .grunt
36
+
37
+ # Bower dependency directory (https://bower.io/)
38
+ bower_components
39
+
40
+ # node-waf configuration
41
+ .lock-wscript
42
+
43
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
44
+ build /Release
45
+
46
+ # Dependency directories
47
+ node_modules /
48
+ jspm_packages /
49
+
50
+ # TypeScript v1 declaration files
51
+ typings /
52
+
53
+ # Optional npm cache directory
54
+ .npm
55
+
56
+ # Optional eslint cache
57
+ .eslintcache
58
+
59
+ # Optional REPL history
60
+ .node_repl_history
61
+
62
+ # Output of 'npm pack'
63
+ * .tgz
64
+
65
+ # Yarn Integrity file
66
+ .yarn-integrity
67
+
68
+ # dotenv environment variables file
69
+ .env
70
+
71
+ # next.js build output
72
+ .next
You can’t perform that action at this time.
0 commit comments