7:43am people
This commit is contained in:
parent
d323508df0
commit
cd8173bb97
1 changed files with 9 additions and 5 deletions
|
|
@ -17,12 +17,16 @@ jobs:
|
||||||
- name: CSS
|
- name: CSS
|
||||||
run: |
|
run: |
|
||||||
stylelint "**/*.css" \
|
stylelint "**/*.css" \
|
||||||
--config /usr/local/lib/node_modules/stylelint-config-standard/index.js \
|
|
||||||
--allow-empty-input \
|
--allow-empty-input \
|
||||||
--fix \
|
--fix \
|
||||||
--rule 'no-duplicate-selectors: null' \
|
--config '{
|
||||||
--rule 'no-descending-specificity: null' \
|
"extends": ["stylelint-config-standard"],
|
||||||
--rule 'declaration-block-no-shorthand-property-overrides: null' \
|
"rules": {
|
||||||
--rule 'font-family-no-duplicate-names: null'
|
"no-duplicate-selectors": null,
|
||||||
|
"no-descending-specificity": null,
|
||||||
|
"declaration-block-no-shorthand-property-overrides": null,
|
||||||
|
"font-family-no-duplicate-names": null
|
||||||
|
}
|
||||||
|
}'
|
||||||
- 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