Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

How to point to specific folders and use custom config #99

Open
smustgrave opened this issue Feb 18, 2025 · 1 comment
Open

How to point to specific folders and use custom config #99

smustgrave opened this issue Feb 18, 2025 · 1 comment
Assignees
Labels

Comments

@smustgrave
Copy link

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?

@neilime
Copy link
Owner

neilime commented Feb 20, 2025

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 ($listOfDir as $dir) {
  $cssLinter = new \CssLint\Linter(
    new \CssLint\Properties([
      // Custom stylelint properties
    ])
  );

  $listOfFiles = [
    // Can be from glob function
   // Can be from File iterator
   // ...
  ];

  foreach ($listOfFiles as $file) {
    $isValid = $cssLinter->lintFile($file);
    if (!$isValid){
      var_dump($cssLinter->getErrors());
    }
  }
}

@neilime neilime self-assigned this Feb 20, 2025
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants