File tree Expand file tree Collapse file tree 5 files changed +779
-68
lines changed
Expand file tree Collapse file tree 5 files changed +779
-68
lines changed Original file line number Diff line number Diff line change 3636 run : npm ci
3737 - name : Run ESLint
3838 run : npm run lint
39+
40+ lint-styles :
41+ name : Lint Styles
42+ runs-on : ubuntu-latest
43+ steps :
44+ - name : Checkout code
45+ uses : actions/checkout@v2
46+ - name : Setup Node.js 16.x
47+ uses : actions/setup-node@v2.1.4
48+ with :
49+ node-version : 16.x
50+ - name : Install dependencies
51+ run : npm ci
52+ - name : Run Stylelint
53+ run : npm run lint:styles
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " stylelint-config-standard-scss" ,
3+ "rules" : {
4+ "indentation" : 4 ,
5+ "font-family-no-missing-generic-family-keyword" : [
6+ true ,
7+ {
8+ "ignoreFontFamilies" : [
9+ " pc-icon"
10+ ]
11+ }
12+ ],
13+ "no-descending-specificity" : null ,
14+ "no-duplicate-selectors" : null ,
15+ "scss/no-global-function-names" : null ,
16+ "scss/at-extend-no-missing-placeholder" : null ,
17+ "string-quotes" : " single"
18+ }
19+ }
You can’t perform that action at this time.
0 commit comments