summaryrefslogtreecommitdiffstats
path: root/.stylelintrc.json
blob: 4263e95e31e554e9e5e47d1c703e6ce5306e9561 (plain)
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
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /
{
  "extends": "stylelint-config-standard-scss",
  "rules": {
    "alpha-value-notation": "number",
    "color-function-notation": "legacy",
    "comment-whitespace-inside": null,
    "custom-property-pattern": null,
    "declaration-colon-newline-after": null,
    "declaration-empty-line-before": null,
    "function-url-quotes": null
ot;: [ 2, { "ignore": ["inside-parens", "value"], "indentInsideParens": "twice" } ], "max-line-length": [ 80, { "ignore": ["non-comments"], "ignorePattern": ["/https?://[0-9,a-z]*.*/"] } ], "property-no-unknown": [ true, { "ignoreProperties": ["composes"] } ], "selector-id-pattern": null, "selector-class-pattern": [ "^([a-z][a-z0-9]*)((-|--|__)[a-z0-9]+)*$", { "message": "Selector should use lowercase and separate words with hyphens or use BEM (selector-class-pattern)" } ], "selector-pseudo-class-no-unknown": [ true, { "ignorePseudoClasses": ["global", "local"] } ], "scss/dollar-variable-empty-line-before": null, "scss/dollar-variable-pattern": null, "scss/double-slash-comment-whitespace-inside": null, "scss/operator-no-newline-after": null } }