richdocuments/.stylelintrc.js
Andy Scherzinger 96e98e85db
fix: Add further SPDX headers
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-09 10:37:23 +02:00

16 lines
408 B
JavaScript

/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
const stylelintConfig = require('@nextcloud/stylelint-config')
stylelintConfig.rules['no-invalid-position-at-import-rule'] = null
stylelintConfig.rules['selector-pseudo-element-no-unknown'] = [
true,
{
ignorePseudoElements: ['v-deep']
}
]
module.exports = stylelintConfig