Skip to content

Instantly share code, notes, and snippets.

@JusteLeblanc
Created November 22, 2018 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JusteLeblanc/85db072cbd16ffe493b1dbb06f4705fc to your computer and use it in GitHub Desktop.
Save JusteLeblanc/85db072cbd16ffe493b1dbb06f4705fc to your computer and use it in GitHub Desktop.
"lint-staged": {
"symfony/**/*.php": [
"./scripts/lint_fix.sh",
"git add",
"symfony/vendor/bin/phpcs -n --standard=Symfony3Custom",
"symfony/vendor/bin/phpstan analyse --level 7"
],
"symfony/**/*.js": "eslint",
"client/**/*.js": "eslint",
"symfony/**/*.less": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment