|
31 | 31 | "rollup-plugin-license": "^3.2.0", |
32 | 32 | "stylelint": "^15.11.0", |
33 | 33 | "stylelint-config-standard-scss": "^11.1.0" |
| 34 | + }, |
| 35 | + "prettier": { |
| 36 | + "trailingComma": "none" |
| 37 | + }, |
| 38 | + "browserslist": [ |
| 39 | + "last 2 versions", |
| 40 | + "> 0.2%", |
| 41 | + "not dead" |
| 42 | + ], |
| 43 | + "commitlint": { |
| 44 | + "rules": { |
| 45 | + "body-max-line-length": [ |
| 46 | + 0, |
| 47 | + "always" |
| 48 | + ] |
| 49 | + } |
| 50 | + }, |
| 51 | + "stylelint": { |
| 52 | + "extends": "stylelint-config-standard-scss", |
| 53 | + "rules": { |
| 54 | + "no-descending-specificity": null, |
| 55 | + "shorthand-property-no-redundant-values": null, |
| 56 | + "at-rule-no-vendor-prefix": null, |
| 57 | + "property-no-vendor-prefix": null, |
| 58 | + "selector-no-vendor-prefix": null, |
| 59 | + "value-no-vendor-prefix": null, |
| 60 | + "color-function-notation": "legacy", |
| 61 | + "alpha-value-notation": "number", |
| 62 | + "selector-not-notation": "simple", |
| 63 | + "color-hex-length": "long", |
| 64 | + "declaration-block-single-line-max-declarations": 3, |
| 65 | + "scss/operator-no-newline-after": null, |
| 66 | + "rule-empty-line-before": [ |
| 67 | + "always", |
| 68 | + { |
| 69 | + "ignore": [ |
| 70 | + "after-comment", |
| 71 | + "first-nested" |
| 72 | + ] |
| 73 | + } |
| 74 | + ], |
| 75 | + "value-keyword-case": [ |
| 76 | + "lower", |
| 77 | + { |
| 78 | + "ignoreProperties": [ |
| 79 | + "/^\\$/" |
| 80 | + ] |
| 81 | + } |
| 82 | + ], |
| 83 | + "media-feature-range-notation": "prefix" |
| 84 | + } |
| 85 | + }, |
| 86 | + "standard-version": { |
| 87 | + "skip": { |
| 88 | + "commit": true, |
| 89 | + "tag": true |
| 90 | + }, |
| 91 | + "types": [ |
| 92 | + { |
| 93 | + "type": "feat", |
| 94 | + "section": "Features" |
| 95 | + }, |
| 96 | + { |
| 97 | + "type": "fix", |
| 98 | + "section": "Bug Fixes" |
| 99 | + }, |
| 100 | + { |
| 101 | + "type": "perf", |
| 102 | + "section": "Improvements" |
| 103 | + } |
| 104 | + ] |
34 | 105 | } |
35 | 106 | } |
0 commit comments