{
  "extends": "stylelint-config-standard-scss",
  "rules": {
    "no-empty-source": null,
    "scss/comment-no-empty": null,
    "scss/at-extend-no-missing-placeholder": null,
    "at-rule-no-unknown": [
      true,
      {
        "ignoreAtRules": [
          "extend",
          "at-root",
          "debug",
          "warn",
          "error",
          "if",
          "else",
          "for",
          "each",
          "while",
          "mixin",
          "include",
          "content",
          "return",
          "function",
          "tailwind",
          "apply",
          "responsive",
          "variants",
          "screen"
        ]
      }
    ]
  }
}