Skip to content

Commit

Permalink
[LINTING] Config stylelint
Browse files Browse the repository at this point in the history
  • Loading branch information
PKuhlmay committed Aug 9, 2024
1 parent fa6ca7e commit 5d3874c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 7 additions & 4 deletions build/stylelint/.stylelintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
**/node_modules/**
# **/node_modules/**
#
# # Ignore lib files
# "**/libs/*.{css,scss,sass}"
# "**/lib/*.{css,scss,sass}"

# Ignore lib files
"**/libs/*.{css,scss,sass}"
Resources/Public/jsDomainModeling/wireit/*

**/Resources/Public/jsDomainModeling/*{.js,.ts}
Documentation-GENERATED-temp/*
12 changes: 5 additions & 7 deletions build/stylelint/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@
"stylelint-prettier"
],
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-standard-scss",
"stylelint-prettier/recommended"
"stylelint-config-recommended"
],
"rules": {
"prettier/prettier": true,
Expand All @@ -25,7 +21,9 @@
"message": "Selector should be written in kebab-case - But until we can enfore this rule we use this"
}
],
"no-descending-specificity": null,
"scss/dollar-variable-pattern": null
"block-no-empty": true,
"no-duplicate-selectors": true,
"function-no-unknown": true,
"no-descending-specificity": null
}
}

0 comments on commit 5d3874c

Please sign in to comment.