-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy path.stylelintrc.json
More file actions
33 lines (33 loc) · 876 Bytes
/
.stylelintrc.json
File metadata and controls
33 lines (33 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": ["@primer/stylelint-config"],
"ignoreFiles": ["app/**/*.css", "**/*.js", "**/*.ts"],
"rules": {
"media-feature-range-notation": null,
"import-notation": null,
"custom-property-pattern": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"declaration-block-no-redundant-longhand-properties": null,
"color-function-notation": "legacy",
"selector-nested-pattern": "^&\\s?\\W",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["mixin", "define-mixin"]
}
],
"plugin/browser-compat": [
true,
{
"severity": "warning",
"allow": {
"features": ["properties.scrollbar-width"],
"flagged": false,
"partialImplementation": true,
"prefix": true
}
}
]
}
}