Skip to content

Commit 327775b

Browse files
authored
Add .gitignore from Chart.js (#531)
This is also quite close to the .gitignore from chartjs-plugin-annotation, so it helps bring the various Chart.js projects more in sync. And it keeps my `.vscode` directory from showing up in Git's list of changes.
1 parent 6241b7c commit 327775b

1 file changed

Lines changed: 25 additions & 8 deletions

File tree

.gitignore

Lines changed: 25 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
1-
.DS_Store
2-
3-
node_modules/*
4-
custom/*
5-
6-
coverage/*
1+
# Deployment
2+
/coverage
3+
/custom
4+
/dist
5+
/gh-pages
76

8-
nbproject/*
9-
dist/
7+
# Node.js
8+
node_modules/
9+
npm-debug.log*
1010

11+
# Docs
12+
.cache-loader
13+
build/
1114
# generated typedocs
1215
docs/api
16+
17+
# Development
18+
.DS_Store
19+
.env.local
20+
.env.development.local
21+
.env.test.local
22+
.env.production.local
23+
.idea
24+
.project
25+
.settings
26+
.vscode
27+
*.log
28+
*.swp
29+
*.stackdump

0 commit comments

Comments
 (0)