duster
duster copied to clipboard
Automatic configuration for Laravel apps to apply Tighten's standard linting & code standards.
This PR updates Laravel Zero to 11 which bumps the min PHP version to 8.2
This PR updates TLint to fail on linting issue when running `fix` With this changing the functionality of fixing to fail on linting issues this may require a major bump....
Looking at the readme there is a way to include/exclude files but if I want that a behavior is different based on the command? Like I want the fix automatic...
Hi again, Hopefully this time it's not just me missing something: when creating the `.php-cs-fixer.dist.php` file in my project, it's picked correctly by Duster. But I don't understand how to...
After installing duster with no custom config whatsoever - the command `./vendor/bin/duster lint` successfully highlights errors regarding `global_namespace_import` rule (under _Linting using TLint_ section), but running `./vendor/bin/duster fix` does not...
Anecdotally I'm noticing that this: ```php class Foo { protected $foo = 'bar'; public $bar = 'baz'; public const FOO = 'bar'; protected $bar = 'baz'; } ``` Is formatted...
I have php 8.3 running bare metal on my Macbook pro m3 max chip with Herd, and duster started to run slower as my project grew. I have phpstan, pint,...
Hello! When I make a custom TLint preset in my own app directory, TLint works appropriately when ran from a custom script: ` "scripts": { "lint": { "1CTLint": [ "./vendor/bin/tlint",...