mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
23 lines
1,009 B
JavaScript
23 lines
1,009 B
JavaScript
module.exports = {
|
|
extends: ['stylelint-config-standard-scss'],
|
|
customSyntax: 'postcss-scss',
|
|
plugins: ['stylelint-scss'],
|
|
rules: {
|
|
'at-rule-no-unknown': null,
|
|
'no-duplicate-selectors': null,
|
|
'font-family-no-missing-generic-family-keyword': null,
|
|
'no-descending-specificity': null,
|
|
'scss/at-rule-no-unknown': true,
|
|
'media-feature-range-notation': null,
|
|
'selector-class-pattern': [
|
|
'^[a-z]([-]?[a-z0-9]+)*(__[a-z0-9]([-]?[a-z0-9]+)*)?(--[a-z0-9]([-]?[a-z0-9]+)*)?$',
|
|
{
|
|
/** This option will resolve nested selectors with & interpolation. - https://stylelint.io/user-guide/rules/selector-class-pattern/#resolvenestedselectors-true--false-default-false */
|
|
resolveNestedSelectors: true,
|
|
message: function expected(selectorValue) {
|
|
return `Expected class selector "${selectorValue}" to match BEM CSS pattern https://en.bem.info/methodology/css. Selector validation tool: https://regexr.com/3apms`;
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|