File tree Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Original file line number Diff line number Diff line change 1+ # http://editorconfig.org
2+ root = true
3+
4+ [* ]
5+ indent_style = space
6+ indent_size = 2
7+ charset = utf-8
8+ trim_trailing_whitespace = true
9+ insert_final_newline = true
10+
11+ [* .md ]
12+ indent_size = 4
13+ trim_trailing_whitespace = false
14+ max_line_length = off
Original file line number Diff line number Diff line change 1+ # See https://github.com/github/gitignore
2+
3+ # macOS/OS X
4+ # # General
5+ .DS_Store
6+ .AppleDouble
7+ .LSOverride
8+
9+ # # Icon must end with two \r
10+ Icon
11+
12+ # # Thumbnails
13+ ._ *
14+
15+ # VSC
16+ .vscode /*
17+ ! .vscode /settings.json
18+ ! .vscode /tasks.json
19+ ! .vscode /launch.json
20+ ! .vscode /extensions.json
21+ * .code-workspace
22+
23+ # Node
24+
25+ # # Dependencies
26+ /node_modules
27+ /.pnp
28+ .pnp.js
29+
30+ # # Testing
31+ /coverage
32+
33+ # # Production
34+ /build
35+
36+ # # Misc
37+ .DS_Store
38+ .env.local
39+ .env.development.local
40+ .env.test.local
41+ .env.production.local
42+
43+ npm-debug.log *
44+ yarn-debug.log *
45+ yarn-error.log *
You can’t perform that action at this time.
0 commit comments