Skip to content

Commit 807008d

Browse files
committed
Refactor dotfiles
1 parent 29e8dc6 commit 807008d

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/node_modules
2-
npm-debug.log
3-
yarn-error.log
41
.DS_Store
5-
/dist
6-
/coverage
2+
*.d.ts
3+
*.log
4+
coverage/
5+
dist/
6+
node_modules/
77
yarn.lock

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
5252
"test:api": "jest",
5353
"test:dev": "jest --watchAll",
54-
"test": "yarn build && yarn format && yarn test:api"
54+
"test": "npm run build && npm run format && npm run test:api"
5555
},
5656
"prettier": {
5757
"tabWidth": 2,

0 commit comments

Comments
 (0)