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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuya Noguchi <takninnovationresearch@gmail.com>2021-04-21 11:09:16 +0300
committerTakuya Noguchi <takninnovationresearch@gmail.com>2021-04-27 02:07:34 +0300
commit0d834b32b4ef34f05637a68cee6fe8f19160952b (patch)
tree5cb12cc5a228cfc4454cade0c53435743259c9dd /.stylelintrc
parenta046523a8d49d48d9cf145e9d2f5024d5d62b8b9 (diff)
Replace scss-lint with stylelint
Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com>
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc12
1 files changed, 12 insertions, 0 deletions
diff --git a/.stylelintrc b/.stylelintrc
new file mode 100644
index 00000000..9890ace1
--- /dev/null
+++ b/.stylelintrc
@@ -0,0 +1,12 @@
+{
+ "extends": "@gitlab/stylelint-config",
+ "ignoreFiles": [
+ "content/assets/stylesheets/highlight.scss"
+ ],
+ "rules": {
+ "declaration-block-semicolon-newline-after": null,
+ "max-nesting-depth": 4,
+ "rule-empty-line-before": null,
+ "selector-max-compound-selectors": 4
+ }
+}