Skip to content

Commit d872098

Browse files
committed
3.1.0
1 parent 358f7a8 commit d872098

File tree

1 file changed

+33
-9
lines changed

1 file changed

+33
-9
lines changed

package.json

+33-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-boilerplate",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "A highly scalable, offline-first foundation with the best DX and a focus on performance and best practices",
55
"repository": {
66
"type": "git",
@@ -55,13 +55,20 @@
5555
"pre-commit": "lint:staged",
5656
"babel": {
5757
"presets": [
58-
["es2015", { "modules": false }],
58+
[
59+
"es2015",
60+
{
61+
"modules": false
62+
}
63+
],
5964
"react",
6065
"stage-0"
6166
],
6267
"env": {
6368
"production": {
64-
"only": ["app"],
69+
"only": [
70+
"app"
71+
],
6572
"plugins": [
6673
"transform-react-remove-prop-types",
6774
"transform-react-constant-elements",
@@ -91,15 +98,27 @@
9198
}
9299
},
93100
"rules": {
94-
"arrow-body-style": [2, "as-needed"],
95-
"comma-dangle": [2, "always-multiline"],
101+
"arrow-body-style": [
102+
2,
103+
"as-needed"
104+
],
105+
"comma-dangle": [
106+
2,
107+
"always-multiline"
108+
],
96109
"import/imports-first": 0,
97110
"import/newline-after-import": 0,
98111
"import/no-extraneous-dependencies": 0,
99112
"import/no-named-as-default": 0,
100113
"import/no-unresolved": 2,
101114
"import/prefer-default-export": 0,
102-
"indent": [2, 2, { "SwitchCase": 1 }],
115+
"indent": [
116+
2,
117+
2,
118+
{
119+
"SwitchCase": 1
120+
}
121+
],
103122
"jsx-a11y/aria-props": 2,
104123
"jsx-a11y/heading-has-content": 0,
105124
"jsx-a11y/href-no-hash": 2,
@@ -132,9 +151,14 @@
132151
"color-hex-case": "upper",
133152
"string-quotes": "single",
134153
"font-family-name-quotes": "always-where-recommended",
135-
"selector-pseudo-class-no-unknown": [true, {
136-
"ignorePseudoClasses": ["global"]
137-
}],
154+
"selector-pseudo-class-no-unknown": [
155+
true,
156+
{
157+
"ignorePseudoClasses": [
158+
"global"
159+
]
160+
}
161+
],
138162
"indentation": 2
139163
}
140164
},

0 commit comments

Comments
 (0)