Skip to content

Commit 4f467b2

Browse files
committed
Tooling cleanup
1 parent 05086fe commit 4f467b2

File tree

6 files changed

+14901
-3452
lines changed

6 files changed

+14901
-3452
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,16 @@ on: [push]
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6-
7-
strategy:
8-
matrix:
9-
node-version: [12.x]
10-
116
steps:
12-
- uses: actions/checkout@v1
13-
- name: Node setup
14-
uses: actions/setup-node@v1
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-node@v2-beta
159
with:
16-
node-version: ${{ matrix.node-version }}
10+
node-version: '14'
1711
- name: install, build, test
1812
run: |
1913
npm ci --no-optional --no-audit --progress=false
2014
npm run lint
2115
npm run test
2216
npm run test:rules
17+
npm run build:docs
2318
npm pack --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //' && rm *.tgz
24-
env:
25-
CI: true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12
1+
15

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ To get the most out of this config, it is assumed that projects have the followi
7373
- [`scss/at-mixin-argumentless-call-parentheses`](https://github.com/kristerkari/stylelint-scss#readme): `always`
7474
- [`scss/at-mixin-pattern`](https://github.com/kristerkari/stylelint-scss#readme): ``
7575
- [`order/order`](https://github.com/hudochenkov/stylelint-order): `dollar-variables, custom-properties, type: at-rule, hasBlock: false, declarations`
76-
- [`a11y/no-obsolete-attribute`](https://github.com/YozhikM/stylelint-a11y#readme)
77-
- [`a11y/no-obsolete-element`](https://github.com/YozhikM/stylelint-a11y#readme)
78-
- [`a11y/no-text-align-justify`](https://github.com/YozhikM/stylelint-a11y#readme)
79-
- [`a11y/no-outline-none`](https://github.com/YozhikM/stylelint-a11y#readme)
76+
- [`a11y/no-obsolete-attribute`]([object Object])
77+
- [`a11y/no-obsolete-element`]([object Object])
78+
- [`a11y/no-text-align-justify`]([object Object])
79+
- [`a11y/no-outline-none`]([object Object])
8080
- [`scale-unlimited/declaration-strict-value`](https://github.com/AndyOGo/stylelint-declaration-strict-value#readme): `color, fill, stroke, /-color/, ignoreKeywords: currentColor, inherit, transparent, initial`
8181

8282
#### Rules of `stylelint-config-standard`
@@ -258,14 +258,14 @@ To get the most out of this config, it is assumed that projects have the followi
258258
- [`scss/dollar-variable-default`](https://github.com/kristerkari/stylelint-scss#readme)
259259
- [`scss/no-dollar-variables`](https://github.com/kristerkari/stylelint-scss#readme)
260260
- [`order/properties-alphabetical-order`](https://github.com/hudochenkov/stylelint-order)
261-
- [`a11y/content-property-no-static-value`](https://github.com/YozhikM/stylelint-a11y#readme)
262-
- [`a11y/font-size-is-readable`](https://github.com/YozhikM/stylelint-a11y#readme)
263-
- [`a11y/line-height-is-vertical-rhythmed`](https://github.com/YozhikM/stylelint-a11y#readme)
264-
- [`a11y/media-prefers-color-scheme`](https://github.com/YozhikM/stylelint-a11y#readme)
265-
- [`a11y/media-prefers-reduced-motion`](https://github.com/YozhikM/stylelint-a11y#readme)
266-
- [`a11y/no-display-none`](https://github.com/YozhikM/stylelint-a11y#readme)
267-
- [`a11y/no-spread-text`](https://github.com/YozhikM/stylelint-a11y#readme)
268-
- [`a11y/selector-pseudo-class-focus`](https://github.com/YozhikM/stylelint-a11y#readme)
261+
- [`a11y/content-property-no-static-value`]([object Object])
262+
- [`a11y/font-size-is-readable`]([object Object])
263+
- [`a11y/line-height-is-vertical-rhythmed`]([object Object])
264+
- [`a11y/media-prefers-color-scheme`]([object Object])
265+
- [`a11y/media-prefers-reduced-motion`]([object Object])
266+
- [`a11y/no-display-none`]([object Object])
267+
- [`a11y/no-spread-text`]([object Object])
268+
- [`a11y/selector-pseudo-class-focus`]([object Object])
269269
- [`at-rule-blacklist`](https://stylelint.io/user-guide/rules/at-rule-blacklist/)
270270
- [`at-rule-property-requirelist`](https://stylelint.io/user-guide/rules/at-rule-property-requirelist/)
271271
- [`at-rule-whitelist`](https://stylelint.io/user-guide/rules/at-rule-whitelist/)

0 commit comments

Comments
 (0)