Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/h-enk/doks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.stylelintrc.json')
-rw-r--r--.stylelintrc.json34
1 files changed, 34 insertions, 0 deletions
diff --git a/.stylelintrc.json b/.stylelintrc.json
new file mode 100644
index 0000000..1490802
--- /dev/null
+++ b/.stylelintrc.json
@@ -0,0 +1,34 @@
+{
+ "extends": "stylelint-config-standard",
+ "rules": {
+ "no-empty-source": null,
+ "string-quotes": "double",
+ "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"
+ ]
+ }
+ ]
+ }
+} \ No newline at end of file