forked from matomo-org/matomo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
27 lines (27 loc) · 954 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
{
"overrides": [
{
"files": ["**/*.less"],
"customSyntax": "postcss-less"
}
],
"ignoreFiles": ["node_modules/**/*", "vendor/**/*", "tests/**/*", "tmp/**/*", "misc/**/*", "plugins/*/vue/dist/*", "plugins/*/tests/**/*", "plugins/Morpheus/stylesheets/base/bootstrap.css"],
"rules": {
"color-no-invalid-hex": true,
"no-irregular-whitespace": true,
"length-zero-no-unit": true,
"block-no-empty": true,
"comment-no-empty": true,
"no-empty-source": true,
"declaration-block-no-duplicate-properties": [
true,
{ "ignore": ["consecutive-duplicates"] }
],
"font-family-no-duplicate-names": true,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"comment-whitespace-inside": "always",
"unit-no-unknown": true,
"selector-anb-no-unmatchable": true
}
}