perfectionist
perfectionist copied to clipboard
How to make it work with lint-stage+pre-commit?
I tried this but it's not working
"lint-staged": {
"*.scss": [
"perfectionist",
"stylelint --syntax scss",
"git add"
]
},
But stylefmt works
"lint-staged": { "*.scss": [ "stylefmt", "stylelint --syntax scss", "git add" ] },