chore: update config files
Showing
... | ... | @@ -95,28 +95,28 @@ |
"url": "https://git.psu.edu/ais-swe/ux/utils" | ||
}, | ||
"lint-staged": { | ||
"*.json": [ | ||
"prettier --write", | ||
"*.html": [ | ||
"html-beautify -qr", | ||
"git add" | ||
], | ||
"*.ts": [ | ||
"*.json": [ | ||
"prettier --write", | ||
"tslint --project tsconfig.json", | ||
"git add" | ||
], | ||
"*.html": [ | ||
"html-beautify -qr", | ||
"git add" | ||
], | ||
"*.scss": [ | ||
"css-beautify -qr", | ||
"git add" | ||
], | ||
"*.ts": [ | ||
"prettier --write", | ||
"tslint --fix --project tsconfig.json", | ||
"git add" | ||
] | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged", | ||
"pre-push": "yarn test" | ||
"pre-push": "yarn test utils" | ||
} | ||
}, | ||
"config": { | ||
... | ... |
Please register or sign in to comment