Meta: add stylelint with config

This commit is contained in:
chris 2023-10-30 16:56:15 +01:00 committed by Christian
commit 2d130787bd
6 changed files with 1278 additions and 0 deletions

14
.stylelintrc.json Normal file
View file

@ -0,0 +1,14 @@
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-stylistic/config"
],
"plugins": [
"stylelint-scss",
"stylelint-stylistic"
],
"rules": {
"media-feature-range-notation": "prefix",
"stylistic/max-empty-lines": 2
}
}