forked from MALSync/MALSync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
28 lines (28 loc) · 885 Bytes
/
.stylelintrc.json
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
{
"extends": ["stylelint-config-standard", "stylelint-prettier/recommended", "stylelint-config-recommended-vue"],
"ignoreFiles": ["**/*.js"],
"customSyntax": "postcss-less",
"plugins": ["stylelint-prettier"],
"overrides": [
{
"files": ["*.vue", "**/*.vue"],
"customSyntax": "postcss-html"
}
],
"rules": {
"prettier/prettier": true,
"no-empty-source": null,
"no-duplicate-selectors": null,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"number-max-precision": null,
"custom-property-empty-line-before": "never",
"color-hex-length": null,
"import-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"media-feature-range-notation": "prefix"
}
}