benmatselby / sublime-phpcs

🔍 PHP CodeSniffer, PHP Coding Standard Fixer, Linter, and Mess Detector Support for Sublime Text
Other
811 stars 127 forks source link

Allowing on_save parameters to be a regex evaluated against active_view filename #176

Closed qkdreyer closed 11 months ago

qkdreyer commented 7 years ago

Executing all phpcs command on save but for vendor directory example :

phpcs.sublime-settings

{
    "phpcs_command_on_save": "^((?!vendor).)*$",
    "php_cs_fixer_on_save": "^((?!vendor).)*$",
    "phpcbf_on_save": "^((?!vendor).)*$",
    "phpcs_linter_command_on_save": "^((?!vendor).)*$",
    "phpmd_command_on_save": "^((?!vendor).)*$"
}
qkdreyer commented 7 years ago

@benmatselby Any updates ?