-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from chouchouji/chore-gitignore
chore: improve .gitignore
- Loading branch information
Showing
1 changed file
with
42 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,51 @@ | ||
# TODO | ||
TODO.md | ||
|
||
# package lock | ||
package-lock.json | ||
pnpm-lock.yaml | ||
|
||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# VisualStudioCode Or idea | ||
.vscode/* | ||
.idea/** | ||
|
||
# Local History for Visual Studio Code | ||
.history/ | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
lerna-debug.log* | ||
.pnpm-debug.log* | ||
|
||
# Others | ||
*.seed | ||
*.csv | ||
*.dat | ||
*.out | ||
*.pid | ||
*.gz | ||
.DS_Store | ||
.idea/** | ||
pids | ||
logs | ||
results | ||
|
||
.vscode | ||
npm-debug.log | ||
node_modules | ||
TODO.md | ||
package-lock.json |