mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2026-03-11 13:31:30 +00:00
19 lines
821 B
JavaScript
19 lines
821 B
JavaScript
module.exports = {
|
|
ignoreFiles: ['css/tailwind.generated.css', 'css/style.css'],
|
|
rules: {
|
|
'at-rule-no-unknown': [true, { ignoreAtRules: ['tailwind', 'layer', 'apply'] }],
|
|
'import-notation': 'string',
|
|
'color-no-hex': true,
|
|
'declaration-property-value-allowed-list': {
|
|
color: ['var\(--.*\)', 'inherit', 'currentColor'],
|
|
'background-color': ['var\(--.*\)', 'transparent', 'inherit'],
|
|
background: ['var\(--.*\)', 'none', 'transparent'],
|
|
'border-color': ['var\(--.*\)', 'transparent', 'inherit', 'currentColor'],
|
|
'outline-color': ['var\(--.*\)', 'transparent', 'inherit', 'currentColor'],
|
|
fill: ['var\(--.*\)', 'none', 'currentColor', 'inherit'],
|
|
stroke: ['var\(--.*\)', 'none', 'currentColor', 'inherit'],
|
|
'box-shadow': ['var\(--.*\)', 'none']
|
|
}
|
|
}
|
|
};
|