Skip to content

Commit 889c803

Browse files
committed
feat: schema validation (#21)
1 parent f0a8b4f commit 889c803

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

package.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,8 @@
1818
"prettier": "^2.0.5"
1919
},
2020
"lint-staged": {
21-
"**/*.{ts,js}": [
22-
"eslint --fix",
23-
"prettier --write"
24-
],
25-
"**/*.{md,json,yml}": [
26-
"prettier --write"
27-
]
21+
"**/*.{ts,js}": "eslint --fix",
22+
"**/*.{md,json,yml}": "prettier --write"
2823
},
2924
"repository": {
3025
"type": "git",

prettier.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
module.exports = {
22
printWidth: 100,
3-
singleQuote: true
3+
singleQuote: true,
4+
trailingComma: 'es5',
45
};

0 commit comments

Comments
 (0)