-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathstylelint.config.mjs
More file actions
30 lines (30 loc) · 1017 Bytes
/
stylelint.config.mjs
File metadata and controls
30 lines (30 loc) · 1017 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
export default {
extends: ["stylelint-config-standard"],
ignoreFiles: [
"**/bin/**",
"**/obj/**",
"output/**",
"src/PrompterOne.Shared/wwwroot/bootstrap/**",
"src/PrompterOne.Shared/wwwroot/vendor/**"
],
rules: {
"alpha-value-notation": null,
"at-rule-empty-line-before": null,
"color-function-notation": null,
"color-function-alias-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-single-line-max-declarations": null,
"declaration-property-value-keyword-no-deprecated": null,
"declaration-property-value-no-unknown": null,
"media-feature-range-notation": null,
"no-descending-specificity": null,
"number-max-precision": null,
"property-no-deprecated": null,
"property-no-vendor-prefix": null,
"selector-attribute-quotes": null,
"selector-class-pattern": null,
"selector-not-notation": null,
"selector-pseudo-element-no-unknown": null,
"value-keyword-case": null
}
};