1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-02 10:32:41 +02:00

create button element

This commit is contained in:
BcRikko
2023-04-01 22:36:20 +09:00
parent 18cf59f0da
commit 17b49006e5
24 changed files with 408 additions and 98 deletions

19
.stylelintrc.js Normal file
View File

@@ -0,0 +1,19 @@
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"
]
}