am使用postcss-scss,它应该允许//在scss文件中。
相反,得到..。
“未知词”
//喷射器
这是我的任务。
var postcss = require('gulp-postcss');
var reporter = require('postcss-reporter');
var syntax_scss = require('postcss-scss');
var stylelint = require('stylelint');
gulp.task("scss-lint", function() { var stylelintConfig = {
"plugins": [
"stylelint-statement-max-nesting-depth"
],
"rules": {
"statement-max-nesting-depth": [3, { countAtRules: false }],
"block-no-empty": true,
"color-no-invalid-hex": true,
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"function-comma-space-after": "always",
"function-url-quotes": "double",
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-no-vendor-prefix": true,
"max-empty-lines": 5,
"number-leading-zero": "never",
"number-no-trailing-zeros": true,
"property-no-vendor-prefix": true,
"rule-no-duplicate-properties": true,
"declaration-block-no-single-line": true,
"rule-trailing-semicolon": "always",
"selector-list-comma-space-before": "never",
"selector-list-comma-newline-after": "always",
"selector-no-id": true,
"string-quotes": "double",
"value-no-vendor-prefix": true}}
var processors = [stylelint(stylelintConfig),reporter({clearMessages: true,throwError: true})];
return gulp.src(['src/**/*.scss']).pipe(postcss(processors), {syntax: syntax_scss});});它说postcss应该允许//注释语法。
这是完整的scss文件..。
.slide-toggle { overflow: hidden; transition: all 1.5s;}
.angular-google-map-wrapper {
position:relative;
height: 100%;
width: 100%;
}
.angular-google-map-container {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
/**
* Do not remove the comment below. It's the markers used by gulp-inject to inject
*/
// injector
// endinjector由于文件是自动生成的,所以我无法删除//。
发布于 2016-02-17 01:09:50
这里的问题在最后一行:
return gulp.src(['src/**/*.scss']).pipe(postcss(processors), {syntax: syntax_scss});});您的括号没有正确包装,因此您的选项没有正确传递给postcss。
它应该是:
return gulp.src(['src/**/*.scss']).pipe(postcss(processors, {syntax: syntax_scss}));});我对答案进行了格式化,使其更具可读性。
return gulp
.src(['./*.scss'])
.pipe(postcss(processors, {
syntax: syntax_scss
}));
});https://stackoverflow.com/questions/35416777
复制相似问题