summaryrefslogtreecommitdiffstats
path: root/.stylelintrc.json
diff options
context:
space:
mode:
authorAnoduck <9925396+anoduck@users.noreply.github.com>2024-09-08 14:54:54 +0000
committerGitHub <noreply@github.com>2024-09-08 14:54:54 +0000
commitd2a0fd14e05ef6b0b9fca454f8996faf86f94204 (patch)
tree242f822be67c179618f1e2aabcea60c172f4f6e0 /.stylelintrc.json
Initial commit
Diffstat (limited to '.stylelintrc.json')
-rw-r--r--.stylelintrc.json46
1 files changed, 46 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json
new file mode 100644
index 0000000..d3f283d
--- /dev/null
+++ b/.stylelintrc.json
@@ -0,0 +1,46 @@
+{
+ "extends": "stylelint-config-standard-scss",
+ "rules": {
+ "no-empty-source": null,
+ "scss/comment-no-empty": null,
+ "scss/at-extend-no-missing-placeholder": null,
+ "scss/dollar-variable-colon-space-after": null,
+ "scss/dollar-variable-empty-line-before": null,
+ "color-function-notation": null,
+ "alpha-value-notation": null,
+ "selector-id-pattern": null,
+ "selector-class-pattern": null,
+ "scss/no-global-function-names": null,
+ "number-max-precision": null,
+ "hue-degree-notation": null,
+ "value-no-vendor-prefix": null,
+ "property-no-vendor-prefix": 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"
+ ]
+ }
+ ]
+ }
+}