mirror of
https://gh.wpcy.net/https://github.com/ronilaukkarinen/simple-dark-mode-for-wp-dashboard.git
synced 2026-04-27 00:46:44 +08:00
17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
// Dependencies
|
|
const {
|
|
src
|
|
} = require('gulp');
|
|
const stylelint = require('@ronilaukkarinen/gulp-stylelint');
|
|
const config = require('../config.js');
|
|
|
|
// Task
|
|
function lintstyles() {
|
|
|
|
return src([config.styles.stylelint.src])
|
|
|
|
// Print linter report
|
|
.pipe(stylelint(config.styles.stylelint.opts));
|
|
}
|
|
|
|
exports.lintstyles = lintstyles;
|