Files
nextcloud-tasks/stylelint.config.js
Raimund Schlüßler 3469c64077 Use npm v7 and simplify overall configuration
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
2021-06-11 22:59:12 +02:00

14 lines
401 B
JavaScript

module.exports = {
extends: '@nextcloud/stylelint-config',
rules: {
'no-eol-whitespace': true,
'length-zero-no-unit': true,
'block-opening-brace-space-before': 'always',
'number-leading-zero': 'never',
'selector-combinator-space-before': 'always',
'selector-combinator-space-after': 'always',
'declaration-colon-space-after': 'always',
'declaration-colon-space-before': 'never'
}
}