forked from spacebar/SplatNet
i think i fixed it... PLEASE
This commit is contained in:
parent
cd8173bb97
commit
d71b9b9f1d
1 changed files with 7 additions and 7 deletions
|
|
@ -16,17 +16,17 @@ jobs:
|
||||||
run: htmlhint "**/*.html" --ignore "assets/**"
|
run: htmlhint "**/*.html" --ignore "assets/**"
|
||||||
- name: CSS
|
- name: CSS
|
||||||
run: |
|
run: |
|
||||||
stylelint "**/*.css" \
|
echo '{
|
||||||
--allow-empty-input \
|
"extends": "stylelint-config-standard",
|
||||||
--fix \
|
|
||||||
--config '{
|
|
||||||
"extends": ["stylelint-config-standard"],
|
|
||||||
"rules": {
|
"rules": {
|
||||||
"no-duplicate-selectors": null,
|
"no-duplicate-selectors": null,
|
||||||
"no-descending-specificity": null,
|
"no-descending-specificity": null,
|
||||||
"declaration-block-no-shorthand-property-overrides": null,
|
"declaration-block-no-shorthand-property-overrides": null,
|
||||||
"font-family-no-duplicate-names": null
|
"font-family-no-duplicate-names": null,
|
||||||
|
"selector-class-pattern": null,
|
||||||
|
"keyframes-name-pattern": null
|
||||||
}
|
}
|
||||||
}'
|
}' > .stylelintrc.json
|
||||||
|
stylelint "**/*.css" --allow-empty-input --fix || stylelint "**/*.css" --allow-empty-input
|
||||||
- name: JS
|
- name: JS
|
||||||
run: 'npx eslint . --no-eslintrc --rule "semi: [2, always]" --rule "no-console: 0" --env browser'
|
run: 'npx eslint . --no-eslintrc --rule "semi: [2, always]" --rule "no-console: 0" --env browser'
|
||||||
Loading…
Reference in a new issue