mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 03:00:50 +02:00
Stylelint added many new default rules Added some temp rule exclusions until code can be refactored Ran ESlint and Stylelint auto-fixer to fix any new errors which can be auto-fixed
20 lines
758 B
YAML
20 lines
758 B
YAML
plugins:
|
|
- stylelint-scss
|
|
extends:
|
|
- stylelint-config-standard
|
|
- stylelint-config-prettier
|
|
- stylelint-config-standard-scss
|
|
- stylelint-config-prettier-scss
|
|
rules:
|
|
at-rule-no-unknown: null # Use SCSS "at" rules
|
|
scss/at-rule-no-unknown: true # Use SCSS "at" rules
|
|
no-descending-specificity: null # Todo: remove once investigated/resolved
|
|
color-function-notation: null # Todo: refactor code
|
|
alpha-value-notation: null # Todo: refactor code
|
|
number-max-precision: null # Todo: refactor code
|
|
property-no-vendor-prefix: null # Necessary unless postcss prefix
|
|
value-no-vendor-prefix: null # Necessary unless postcss prefix
|
|
font-family-no-missing-generic-family-keyword:
|
|
- true
|
|
- ignoreFontFamilies:
|
|
- Font Awesome 5 Free
|