Skip to content

Commit 70277fb

Browse files
committed
Refactor dotfiles
1 parent 8ef1af9 commit 70277fb

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
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
2+
*.d.ts
3+
*.log
4+
coverage/
5+
dist/
6+
node_modules/
57
yarn.lock
6-
/dist
7-
/coverage

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@
6161
"xo": "^0.38.0"
6262
},
6363
"scripts": {
64-
"clean": "rm -rf dist",
6564
"build": "rollup -c",
6665
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
6766
"test:api": "jest",
@@ -70,7 +69,7 @@
7069
"test:karma:firefox": "karma start --single-run --browsers FirefoxHeadless",
7170
"test:karma:safari": "karma start --single-run --browsers Safari",
7271
"test:dev": "jest --watchAll",
73-
"test": "yarn build && yarn format && yarn test:api"
72+
"test": "npm run build && npm run format && npm run test:api"
7473
},
7574
"prettier": {
7675
"tabWidth": 2,

0 commit comments

Comments
 (0)