ci: convert json config to yaml

This commit is contained in:
George Cushen 2021-01-09 19:37:31 +00:00
commit 68c25ddc4a
2 changed files with 13 additions and 19 deletions

View file

@ -1,19 +0,0 @@
{
"plugins": [
"stylelint-scss"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"no-descending-specificity": null,
"font-family-no-missing-generic-family-keyword": [ true, {
"ignoreFontFamilies": [
"Font Awesome 5 Free"
]
}]
}
}

View file

@ -0,0 +1,13 @@
plugins:
- stylelint-scss
extends:
- stylelint-config-standard
- stylelint-config-prettier
rules:
at-rule-no-unknown: null
scss/at-rule-no-unknown: true
no-descending-specificity: null
font-family-no-missing-generic-family-keyword:
- true
- ignoreFontFamilies:
- Font Awesome 5 Free