Skip to content

Commit 86503df

Browse files
committed
chore: add gitignore and editorconfig
1 parent 64fc8fd commit 86503df

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

.editorconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
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*

0 commit comments

Comments
 (0)