Skip to content

Commit 8272ec4

Browse files
fix: more path to ignore (#57)
1 parent f53c2ba commit 8272ec4

File tree

1 file changed

+63
-3
lines changed

1 file changed

+63
-3
lines changed

ignore-paths.js

Lines changed: 63 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,69 @@
11
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
345
"node_modules/**/*",
46+
47+
// Optional REPL history
48+
".node_repl_history",
49+
50+
// Generated code
451
"dist/**/*",
5-
"coverage/**/*",
52+
53+
// Test
654
"test/fixtures/**/*",
755
"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",
969
];

0 commit comments

Comments
 (0)