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
Is your feature request related to a problem? Please describe.
Nope
Describe the solution you'd like
I'm looking to integrate potentially on my project but want to be able to point to specific directories and use custom stylelint and wonder if possible with this library?
The text was updated successfully, but these errors were encountered:
Hi @smustgrave with the last version it is possible to pass glob file pattern to lint multiple files in the same command.
So IMO, you will be able to do what you want.
# Lint dir1 with specific stylelint option
php vendor/bin/php-css-lint --options='{ custom option for dir 1 }'"/path/to/dir1/*.css"# Lint dir2 with specific stylelint option
php vendor/bin/php-css-lint --options='{ custom option for dir 2 }'"/path/to/dir2/*.css"
If you are using a php script you can do more or less what you want:
Example (pseudo code):
$listOfDir = [
// Can be hardcoded// Can be from glob function// Can be from Directory iterator// ...
];
foreach ($listOfDiras$dir) {
$cssLinter = new \CssLint\Linter(
new \CssLint\Properties([
// Custom stylelint properties
])
);
$listOfFiles = [
// Can be from glob function// Can be from File iterator// ...
];
foreach ($listOfFilesas$file) {
$isValid = $cssLinter->lintFile($file);
if (!$isValid){
var_dump($cssLinter->getErrors());
}
}
}
Is your feature request related to a problem? Please describe.
Nope
Describe the solution you'd like
I'm looking to integrate potentially on my project but want to be able to point to specific directories and use custom stylelint and wonder if possible with this library?
The text was updated successfully, but these errors were encountered: