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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
### Add your custom ignores below after making a copy
/reports
/test/errors/reported.json
docs/*.jar
/.fuzzer*
./crash-*
/.cifuzz-corpus
## README & SOURCE https://github.com/bettermarks/.github#gitignore
###User related files
## Secrets / env variables
# user specific config for direnv
# https://github.com/direnv/direnv/blob/master/docs/installation.md
# can be used to install node with the correct version when entering the directory
# https://github.com/direnv/direnv/wiki/Node
.env*
!.env*.sample
!.env*.template
## personal file based notes
.*.md
todo.md
notes.md
## MacOS
.DS_Store
## VS Code
.vscode
## JetBrains / IntelliJ / WebStorm / PyCharm / ...
.idea
*.iml
out
gen
## Vim template
# Swap
[._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
Sessionx.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
### NodeJS / Javascript / Infrastructure as Code
# Logs
logs
*.log
*-debug.log*
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Coverage directory used by tools like istanbul
coverage
*.lcov
.nyc_output
# Dependency directories
node_modules
# TypeScript cache
*.tsbuildinfo
# cache/temp directories
.cache
.eslintcache
.stylelintcache
.temp
.gen
.npm
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# build output
.next
.nuxt
dist
|