File tree Expand file tree Collapse file tree 1 file changed +63
-3
lines changed Expand file tree Collapse file tree 1 file changed +63
-3
lines changed Original file line number Diff line number Diff line change 1
1
export default [
2
- "types/**/*" ,
2
+ // OS
3
+ ".DS_Store" ,
4
+ "Thumbs.db" ,
5
+
6
+ // IDE
7
+ ".idea" ,
8
+ "*.iml" ,
9
+ ".vscode" ,
10
+ ".vscode-test" ,
11
+ "*.sublime-project" ,
12
+ "*.sublime-workspace" ,
13
+
14
+ // Logs
15
+ "logs/**/*" ,
16
+ "*.log" ,
17
+ "npm-debug.log*" ,
18
+ "yarn-debug.log*" ,
19
+ "yarn-error.log*" ,
20
+ "lerna-debug.log*" ,
21
+
22
+ // Diagnostic reports (https://nodejs.org/api/report.html)
23
+ "report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json" ,
24
+
25
+ // Runtime data
26
+ "pids" ,
27
+ "*.pid" ,
28
+ "*.seed" ,
29
+ "*.pid.lock" ,
30
+
31
+ // Directory for instrumented libs generated by jscoverage/JSCover
32
+ "lib-cov/**/*" ,
33
+
34
+ // Coverage directory used by tools like istanbul
35
+ "coverage/**/*" ,
36
+ "*.lcov" ,
37
+
38
+ // nyc test coverage
39
+ ".nyc_output" ,
40
+
41
+ // Compiled binary addons (https://nodejs.org/api/addons.html)
42
+ "build/Release/**/*" ,
43
+
44
+ // Dependencies
3
45
"node_modules/**/*" ,
46
+
47
+ // Optional REPL history
48
+ ".node_repl_history" ,
49
+
50
+ // Generated code
4
51
"dist/**/*" ,
5
- "coverage/**/*" ,
52
+
53
+ // Test
6
54
"test/fixtures/**/*" ,
7
55
"test/outputs/**/*" ,
8
- "build/Release/**/*" ,
56
+
57
+ // Generated types
58
+ "types/**/*" ,
59
+
60
+ // Reports
61
+ "reports/**/*" ,
62
+
63
+ // Caches
64
+ ".cache/**/*" ,
65
+ ".eslintcache" ,
66
+ ".stylelintcache" ,
67
+ ".cspellcache" ,
68
+ "*.tsbuildinfo" ,
9
69
] ;
You can’t perform that action at this time.
0 commit comments