mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-23 09:46:07 +08:00
20 lines
343 B
JavaScript
20 lines
343 B
JavaScript
/**
|
|
* lint-staged config
|
|
* @ref https://www.npmjs.com/package/lint-staged
|
|
* @desc generated at 9/15/2022, 12:52:11 PM by streakingman-cli@1.9.2
|
|
*/
|
|
|
|
module.exports = {
|
|
'*.{[tj]s,[tj]sx,[cm]js}': [
|
|
'eslint --fix'
|
|
],
|
|
'*.json': [
|
|
'prettier --write'
|
|
],
|
|
|
|
'*.{css,scss}': [
|
|
'stylelint --fix'
|
|
]
|
|
|
|
};
|