Spaces:
Running
Running
neon_arch commited on
Commit ·
faf9995
1
Parent(s): b123fbb
🩹 fix: remove unnecessary `stylelint` checks by disabling them in the `stylelint` config file (#375)
Browse files- .stylelintrc.json +5 -2
.stylelintrc.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
| 1 |
-
{
|
| 2 |
"extends": "stylelint-config-standard",
|
| 3 |
"rules": {
|
| 4 |
"alpha-value-notation": "number",
|
| 5 |
-
"selector-class-pattern": null
|
|
|
|
| 6 |
},
|
|
|
|
|
|
|
| 7 |
"overrides": [
|
| 8 |
{
|
| 9 |
"files": ["*.js"],
|
|
|
|
| 1 |
+
{
|
| 2 |
"extends": "stylelint-config-standard",
|
| 3 |
"rules": {
|
| 4 |
"alpha-value-notation": "number",
|
| 5 |
+
"selector-class-pattern": null,
|
| 6 |
+
"no-descending-specificity": null
|
| 7 |
},
|
| 8 |
+
"fix": true,
|
| 9 |
+
"cache": true,
|
| 10 |
"overrides": [
|
| 11 |
{
|
| 12 |
"files": ["*.js"],
|