PHP code example of sweetchuck / robo-scss-lint
1. Go to this page and download the library: Download sweetchuck/robo-scss-lint library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sweetchuck / robo-scss-lint example snippets
use Sweetchuck\Robo\ScssLint\ScssLintTaskLoader;
class RoboFile extends \Robo\Tasks
{
use ScssLintTaskLoader;
public function lintScssMinimal()
{
// bundle exec scss-lint
return $this->taskScssLintFiles();
}
}