mirror of
https://github.com/nostalgic-css/NES.css.git
synced 2025-08-28 16:30:09 +02:00
20 lines
402 B
JavaScript
20 lines
402 B
JavaScript
module.exports = {
|
|
extends: [
|
|
"stylelint-config-recommended",
|
|
"stylelint-config-recess-order"
|
|
],
|
|
rules: {
|
|
"no-duplicate-selectors": null,
|
|
"no-descending-specificity": null,
|
|
"custom-property-pattern": [
|
|
/** Global Variables */
|
|
"^nes-[a-z0-9-]+$",
|
|
/** Private Variables */
|
|
"^nes_[a-z0-9-]+$"
|
|
].join('|')
|
|
},
|
|
plugins: [
|
|
"stylelint-order"
|
|
]
|
|
}
|