Skip to content

Instantly share code, notes, and snippets.

@phreakin
Created May 15, 2023 12:44
Show Gist options
  • Save phreakin/29ca0965e5ad0238048a99e14284fb6c to your computer and use it in GitHub Desktop.
Save phreakin/29ca0965e5ad0238048a99e14284fb6c to your computer and use it in GitHub Desktop.
pint.json
{
"preset": "laravel",
"rules": {
"blank_line_before_statement": {
"statements": [
"return",
"try"
]
},
"concat_space": {
"spacing": "none"
},
"not_operator_with_successor_space": true,
"logical_operators": true
},
"exclude": [
"bin",
"database",
"bootstrap",
"public",
"node_modules",
"tests/",
"vendor"
],
"require": [
"vendor/autoload.php"
],
"plugins": [
"php"
],
"linting": {
"phpcs": {
"enabled": true,
"showSources": true
},
"phpmd": {
"enabled": true,
"showSources": true,
"rulesets": "cleancode,codesize,controversial,design,naming,unusedcode"
},
"phpstan": {
"enabled": true,
"showSources": true,
"level": 7
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment