Skip to content

Commit fde50cd

Browse files
committed
fix: octokit issue api
also includes: - prettier - formatting - contributors - husky configuration fix
1 parent 991064c commit fde50cd

18 files changed

+1161
-977
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "eslint:recommended",
2+
"extends": ["eslint:recommended", "plugin:prettier/recommended"],
33
"env": {
44
"node": true,
55
"es6": true,

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npm test
4+
npm run build && git add dist

.prettierrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true
4+
}

0 commit comments

Comments
 (0)