summaryrefslogtreecommitdiffstats
path: root/src/assets/fonts/Cousine/LICENSE.txt
Commit message (Expand)AuthorAgeFilesLines
* chore: load css fontsArmand Philippot2021-12-131-0/+202
lass='lines'>
{
  "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,
    "hue-degree-notation": "number",
    "indentation": [
      2,
      {
        "ignore": ["inside-parens", "value"],
        "indentInsideParens": "twice"
      }
    ],
    "length-zero-no-unit": [true, { "ignore": ["custom-properties"] }],
    "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
  }
}