forked from feathr-ai/feathr
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.stylelintrc
More file actions
27 lines (27 loc) · 1011 Bytes
/
Copy path.stylelintrc
File metadata and controls
27 lines (27 loc) · 1011 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-css-modules",
"stylelint-config-recess-order",
"stylelint-config-rational-order",
"stylelint-config-prettier"
],
"plugins": ["stylelint-order", "stylelint-declaration-block-no-ignored-properties"],
"rules": {
"plugin/declaration-block-no-ignored-properties": true,
"declaration-block-trailing-semicolon": "always",
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"function-name-case": "lower",
"no-descending-specificity": null,
"no-invalid-double-slash-comments": null,
"rule-empty-line-before": ["always", { "except": ["inside-block"] }],
"no-extra-semicolons": true,
"selector-pseudo-class-no-unknown": [true, { "ignorePseudoClasses": ["global"] }],
"indentation": [2],
"no-duplicate-selectors": null,
"selector-class-pattern": null
},
"ignoreFiles": ["node_modules/**/*", "build/**/*", "dist/**/*"],
"customSyntax": "postcss-less"
}