Files
schemas-app/stylelint.config.cjs
T

13 lines
288 B
JavaScript
Raw Normal View History

2025-11-22 16:42:35 +01:00
module.exports = {
customSyntax: 'postcss-html',
extends: [
'stylelint-config-standard',
'stylelint-config-recommended-vue',
],
// add your custom config here
// https://stylelint.io/user-guide/configuration
rules: {
"no-invalid-position-declaration": null
},
}