feat(nvim): add css linting and language specific tab space

This commit is contained in:
matt1432 2023-10-20 21:06:44 -04:00
parent 687993617d
commit 044362378a
3 changed files with 41 additions and 4 deletions
hosts/wim/config/ags

View file

@ -0,0 +1,14 @@
extends: stylelint-config-standard-scss
ignoreFiles: "**/*.js"
rules:
selector-type-no-unknown: null
declaration-empty-line-before: null
no-descending-specificity: null
selector-pseudo-class-no-unknown: null
color-function-notation: legacy
alpha-value-notation: number
scss/operator-no-unspaced: null
scss/no-global-function-names: null
scss/dollar-variable-empty-line-before: null
scss/dollar-variable-pattern: ^[a-z]+(_[a-z]+)*$
scss/at-mixin-pattern: ^[a-z]+(_[a-z]+)*$