kk-webpack-base--config
Version:
Webpack config for kk-webpack-base
45 lines (44 loc) • 1.7 kB
JavaScript
module.exports = {
extends: ['stylelint-config-standard-scss'],
plugins: ['stylelint-scss'],
rules: {
'at-rule-no-unknown': null,
'comment-empty-line-before': null,
'rule-empty-line-before': null,
'no-missing-end-of-source-newline': null,
'property-no-vendor-prefix': null,
'color-hex-case': null,
'color-hex-length': null,
'color-function-notation': 'legacy',
'number-leading-zero': null,
'number-max-precision': null,
'font-family-name-quotes': null,
'selector-pseudo-element-colon-notation': null,
'string-quotes': null,
'alpha-value-notation': null,
'function-calc-no-unspaced-operator': null,
'no-descending-specificity': null,
'at-rule-empty-line-before': null,
'selector-class-pattern': null,
'max-line-length': null,
'no-invalid-position-at-import-rule': null,
'scss/at-extend-no-missing-placeholder': null,
'scss/operator-no-unspaced': null,
'scss/at-function-pattern': null,
'scss/at-mixin-pattern': null,
'scss/percent-placeholder-pattern': null,
'scss/dollar-variable-colon-space-after': null,
'scss/comment-no-empty': null,
'scss/double-slash-comment-whitespace-inside': null,
'scss/at-rule-no-unknown': true,
'scss/selector-no-redundant-nesting-selector': true,
'scss/no-global-function-names': null,
'scss/double-slash-comment-empty-line-before': null,
'scss/dollar-variable-empty-line-before': null,
'scss/dollar-variable-pattern': null,
'scss/at-import-no-partial-leading-underscore': null,
'selector-id-pattern': null,
'custom-property-pattern': null,
'declaration-block-no-redundant-longhand-properties': null,
},
};