-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.stylelintrc.js
31 lines (30 loc) · 1.2 KB
/
.stylelintrc.js
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
/** @type {import('stylelint').Config} */
const config = {
extends: "@workleap/stylelint-configs",
rules: {
// Disable all the new workleap rules for now. We will enable them one by one as needed.
// We are now on the workleap config, even if we haven't fixed all the rules yet
"custom-property-pattern": null,
"custom-property-pattern": null,
"number-max-precision": null,
"selector-not-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"custom-property-pattern": null,
"import-notation": null,
"declaration-empty-line-before": null,
"unit-allowed-list": null,
"color-function-notation": null,
"alpha-value-notation": null,
"comment-empty-line-before": null,
"selector-pseudo-element-colon-notation": null,
"value-keyword-case": null,
"custom-property-empty-line-before": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"media-feature-range-notation": null,
"hue-degree-notation": null,
"font-family-name-quotes": null,
"at-rule-empty-line-before": null,
}
};
export default config;