You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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", "lint", "app" ] },
But fails when running vendor/bin/duster lint --using="tlint"
The error is: The preset 'Tighten\TLint\Presets\App\Support\Linting\BackendPresetPreset' does not exist or does not implement the PresetInterface.
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", "lint", "app" ] },
But fails when running
vendor/bin/duster lint --using="tlint"
The error is:
The preset 'Tighten\TLint\Presets\App\Support\Linting\BackendPresetPreset' does not exist or does not implement the PresetInterface.
tlint.json:
{ "preset": "App\\Support\\Linting\\BackendPreset", "disabled": [], "excluded": [ "stubs", "bin" ], "paths": [ { "app": [ "app" ] } ] }
Driving me crazy, because --dirty does not work properly on the custom script.
The text was updated successfully, but these errors were encountered: