Skip to content

Commit 7a3d624

Browse files
committed
chore(deps-dev): reduce external config files
1 parent 06f1c6f commit 7a3d624

File tree

6 files changed

+71
-59
lines changed

6 files changed

+71
-59
lines changed

.browserslistrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

.commitlintrc.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.stylelintrc.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

.versionrc.json

Lines changed: 0 additions & 20 deletions
This file was deleted.

package.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,76 @@
3131
"rollup-plugin-license": "^3.2.0",
3232
"stylelint": "^15.11.0",
3333
"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+
]
34105
}
35106
}

0 commit comments

Comments
 (0)