We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e8dc6 commit 807008dCopy full SHA for 807008d
.editorconfig
@@ -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
@@ -1,7 +1,7 @@
-/node_modules
-npm-debug.log
-yarn-error.log
.DS_Store
-/dist
-/coverage
+*.d.ts
+*.log
+coverage/
+dist/
+node_modules/
yarn.lock
package.json
@@ -51,7 +51,7 @@
51
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
52
"test:api": "jest",
53
"test:dev": "jest --watchAll",
54
- "test": "yarn build && yarn format && yarn test:api"
+ "test": "npm run build && npm run format && npm run test:api"
55
},
56
"prettier": {
57
"tabWidth": 2,
0 commit comments