|
1 |
| -# Ignore temporary files by giving them a special name |
| 1 | +# ! Note that any pattern with a / in the beginning OR MIDDLE (but not end) will |
| 2 | +# ! be considered relative to this file ONLY. Matching subdirs will NOT match! |
| 3 | +# ! Otherwise, patterns will match entities in any directory or subdirectory. |
| 4 | +# ! Prepend ** (or **/) if advanced subdir matching of complex paths is desired. |
| 5 | +# ! See https://git-scm.com/docs/gitignore#_pattern_format |
| 6 | + |
| 7 | +# Ignore temporary files in any subdir by giving them a special name |
2 | 8 | *.ignore
|
3 | 9 | *.ignore.*
|
4 | 10 | ignore.*
|
| 11 | +tmp |
5 | 12 |
|
6 |
| -# Ignore sensitive files |
| 13 | +# Ignore sensitive files in any subdir |
7 | 14 | .env
|
8 | 15 | .npmrc
|
9 | 16 | *.local
|
10 | 17 |
|
11 |
| -# Ignore transpiled source (used for advanced debugging) |
| 18 | +# Ignore transpiled source in any subdir (used for advanced debugging) |
12 | 19 | .transpiled
|
13 | 20 |
|
14 |
| -# Ignore any external scripts |
15 |
| -external-scripts/bin |
| 21 | +# Ignore packaged files that probably shouldn't be committed |
| 22 | +*.tgz |
16 | 23 |
|
17 |
| -# Ignore build artifacts |
| 24 | +# Ignore relevant build artifacts in any subdir (with exceptions) |
18 | 25 | *.tsbuildinfo
|
| 26 | +# ? Preceding asterisks "**/" are needed to match any build subdir in monorepos |
| 27 | +# ? and proceeding asterisks "/**" allow subsequent negations to be interpreted |
| 28 | +# ? properly. See: https://git-scm.com/docs/gitignore#_pattern_format |
| 29 | +**/build/** |
| 30 | +# ? This and other negations must end in "/**" to be interpreted properly. |
| 31 | +!**/src/**/build/** |
| 32 | +# ? This and other negations must end in "/**" to be interpreted properly. |
| 33 | +!**/docs/**/build/** |
19 | 34 | dist
|
20 |
| -build |
| 35 | +coverage |
| 36 | +lib-cov |
| 37 | +.nyc_output |
| 38 | +.grunt |
| 39 | +bower_components |
| 40 | +.lock-wscript |
| 41 | +build/Release |
21 | 42 | .vercel
|
22 | 43 | .next
|
23 | 44 | next-env.d.ts
|
24 |
| -coverage |
25 | 45 |
|
26 |
| -# Ignore local configuration |
27 |
| -.vscode |
28 |
| -!.vscode/launch.example.json |
| 46 | +# Ignore cloned GitHub wiki (do not regard it as a so-called "submodule") |
| 47 | +# ? Note that this complex path is relative to this file |
| 48 | +/.wiki |
29 | 49 |
|
30 |
| -# Ignore node_modules |
| 50 | +# Ignore local vscode configuration |
| 51 | +# ? Note that this complex path is relative to this file |
| 52 | +/.vscode/** |
| 53 | +# ? Note that this complex path is relative to this file |
| 54 | +!/.vscode/*.example.json |
| 55 | + |
| 56 | +# Ignore relevant NPM and JSPM artifacts in any subdir |
| 57 | +.npm |
31 | 58 | node_modules
|
| 59 | +jspm_packages |
| 60 | + |
| 61 | +# Ignore logs in any subdir |
| 62 | +logs |
| 63 | +*.log |
| 64 | +npm-debug.log* |
| 65 | +yarn-debug.log* |
| 66 | +yarn-error.log* |
32 | 67 |
|
33 |
| -# Ignore random nothingness |
34 |
| -.DS_Store |
| 68 | +# Ignore random nothingness in any subdir |
| 69 | +.eslintcache |
| 70 | +.node_repl_history |
| 71 | +.yarn-integrity |
| 72 | +*.DS_Store |
| 73 | +.AppleDouble |
| 74 | +.LSOverride |
| 75 | +*~ |
| 76 | +.fuse_hidden* |
| 77 | +.directory |
| 78 | +.Trash-* |
| 79 | +.nfs* |
| 80 | +.DocumentRevisions-V100 |
| 81 | +.fseventsd |
| 82 | +.Spotlight-V100 |
| 83 | +.TemporaryItems |
| 84 | +.Trashes |
| 85 | +.VolumeIcon.icns |
| 86 | +.com.apple.timemachine.donotpresent |
| 87 | +.AppleDB |
| 88 | +.AppleDesktop |
| 89 | +Network Trash Folder |
| 90 | +Temporary Items |
| 91 | +.apdisk |
| 92 | +pids |
| 93 | +*.pid |
| 94 | +*.seed |
| 95 | +*.pid.lock |
| 96 | +Thumbs.db |
| 97 | +ehthumbs.db |
| 98 | +ehthumbs_vista.db |
| 99 | +Desktop.ini |
| 100 | +$RECYCLE.BIN |
| 101 | +*.cab |
| 102 | +*.msi |
| 103 | +*.msm |
| 104 | +*.msp |
| 105 | +*.lnk |
| 106 | +_book |
| 107 | +CertificateAuthorityCertificate.pem |
| 108 | + |
| 109 | +# Custom |
| 110 | +external-scripts/bin |
0 commit comments