зеркало из https://github.com/nextcloud/cookbook.git
12 строки
347 B
JavaScript
12 строки
347 B
JavaScript
const stylelintConfig = require('@nextcloud/stylelint-config')
|
|
|
|
stylelintConfig.extends.push('stylelint-config-idiomatic-order')
|
|
|
|
stylelintConfig.rules.indentation = null
|
|
stylelintConfig.rules['string-quotes'] = 'single'
|
|
stylelintConfig.rules['function-no-unknown'] = [true, {
|
|
'ignoreFunctions': ["math.div"]
|
|
}]
|
|
|
|
module.exports = stylelintConfig
|