forked from GouvernementFR/dsfr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.yml
More file actions
19 lines (19 loc) · 786 Bytes
/
.stylelintrc.yml
File metadata and controls
19 lines (19 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"extends": "stylelint-config-standard",
// "ignoreFiles": "./packages/icons/generated/_icons.scss",
"plugins": [
"stylelint-scss"
],
"rules": {
"property-no-unknown": [true, { "ignoreProperties": ["print-color-adjust"] }],
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null,
"unit-case": null,
"media-feature-name-no-unknown": [true, {"ignoreMediaFeatureNames": ["prefers-contrast"]}],
"unit-no-unknown": [true, { "ignoreFunctions": ["space", "calc"], "ignoreUnits": ["Hz", "kHz", "N", "v", "w", "/x[0-9]+/"] }],
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"font-family-no-missing-generic-family-keyword": [true,{ "ignoreFontFamilies": ["icons"] }],
}
}