/** * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ module.exports = { extends: 'stylelint-config-recommended-vue', rules: { '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'], }