mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
9 lines
207 B
JavaScript
9 lines
207 B
JavaScript
const stylelintConfig = require('@nextcloud/stylelint-config')
|
|
|
|
stylelintConfig.rules['at-rule-no-unknown'] = [
|
|
true, {
|
|
ignoreAtRules: ['include', 'mixin', 'use'],
|
|
},
|
|
]
|
|
|
|
module.exports = stylelintConfig
|