mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
15 lines
454 B
JavaScript
15 lines
454 B
JavaScript
module.exports = {
|
|
extends: 'stylelint-config-standard',
|
|
ignoreFiles: [ 'dist/*' ],
|
|
rules: {
|
|
'color-hex-case': 'upper',
|
|
'comment-empty-line-before': null,
|
|
'declaration-block-no-duplicate-properties': [ true, {
|
|
ignore: [ 'consecutive-duplicates-with-different-values' ],
|
|
} ],
|
|
'hue-degree-notation': 'number',
|
|
'property-no-vendor-prefix': null,
|
|
'selector-class-pattern': null,
|
|
'string-quotes': 'single',
|
|
},
|
|
};
|