33 строки
690 B
JavaScript
33 строки
690 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
module.exports = {
|
|
extends: 'stylelint-config-recommended-vue',
|
|
rules: {
|
|
'selector-type-no-unknown': null,
|
|
'rule-empty-line-before': [
|
|
'always',
|
|
{
|
|
ignore: ['after-comment', 'inside-block'],
|
|
},
|
|
],
|
|
'declaration-empty-line-before': [
|
|
'never',
|
|
{
|
|
ignore: ['after-declaration'],
|
|
},
|
|
],
|
|
'comment-empty-line-before': null,
|
|
'selector-type-case': null,
|
|
'no-descending-specificity': null,
|
|
'selector-pseudo-element-no-unknown': [
|
|
true,
|
|
{
|
|
ignorePseudoElements: ['v-deep'],
|
|
},
|
|
],
|
|
},
|
|
plugins: ['stylelint-scss'],
|
|
}
|