You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
474 B

module.exports = {
extends: [
'stylelint-config-standard-scss',
'stylelint-config-html',
'stylelint-config-recommended-vue',
'stylelint-config-rational-order',
'stylelint-config-prettier-scss',
],
defaultSeverity: 'warning',
plugins: ['stylelint-order'],
rules: {
'at-rule-no-unknown': null,
'selector-class-pattern': [
'^[a-z0-9-_]+$',
{
message: 'Expected class selector to be kebab-case',
},
],
},
};