@zendeskgarden/eslint-config 23.0.0 → 27.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -16,7 +16,7 @@ selection of associated [plugins](#plugins).
16
16
  ## Installation
17
17
 
18
18
  ```sh
19
- npm install eslint babel-eslint eslint-plugin-node @zendeskgarden/eslint-config
19
+ npm install eslint @babel/eslint-parser eslint-plugin-node @zendeskgarden/eslint-config
20
20
  ```
21
21
 
22
22
  ## Usage
package/index.js CHANGED
@@ -17,7 +17,7 @@ module.exports = {
17
17
  './plugins/node/best-practices',
18
18
  './plugins/node/stylistic-issues'
19
19
  ].map(require.resolve),
20
- parser: 'babel-eslint',
20
+ parser: '@babel/eslint-parser',
21
21
  env: {
22
22
  browser: true,
23
23
  es2020: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zendeskgarden/eslint-config",
3
- "version": "23.0.0",
3
+ "version": "27.0.0",
4
4
  "description": "Garden ESLint config",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Zendesk Garden <garden@zendesk.com>",
@@ -22,27 +22,27 @@
22
22
  "test": "yarn lint && yarn format && git diff --quiet"
23
23
  },
24
24
  "peerDependencies": {
25
- "babel-eslint": "^10.0.0",
26
- "eslint": "^8.0.0",
25
+ "@babel/eslint-parser": "^7.15.0",
26
+ "eslint": "^8.5.0",
27
27
  "eslint-plugin-node": "^11.1.0"
28
28
  },
29
29
  "devDependencies": {
30
- "@typescript-eslint/eslint-plugin": "5.0.0",
31
- "@typescript-eslint/parser": "5.0.0",
32
- "babel-eslint": "10.1.0",
33
- "eslint": "8.0.1",
34
- "eslint-plugin-jest": "25.2.1",
35
- "eslint-plugin-jsx-a11y": "6.4.1",
30
+ "@babel/eslint-parser": "7.16.5",
31
+ "@typescript-eslint/eslint-plugin": "5.8.1",
32
+ "@typescript-eslint/parser": "5.8.1",
33
+ "eslint": "8.5.0",
34
+ "eslint-plugin-jest": "25.3.2",
35
+ "eslint-plugin-jsx-a11y": "6.5.1",
36
36
  "eslint-plugin-node": "11.1.0",
37
37
  "eslint-plugin-notice": "0.9.10",
38
- "eslint-plugin-react": "7.26.1",
39
- "eslint-plugin-react-hooks": "4.2.0",
40
- "husky": "7.0.2",
41
- "jest": "27.2.5",
38
+ "eslint-plugin-react": "7.28.0",
39
+ "eslint-plugin-react-hooks": "4.3.0",
40
+ "husky": "7.0.4",
41
+ "jest": "27.4.5",
42
42
  "prettier-package-json": "2.6.0",
43
43
  "react": "17.0.2",
44
- "standard-version": "9.3.1",
45
- "typescript": "4.4.4"
44
+ "standard-version": "9.3.2",
45
+ "typescript": "4.5.4"
46
46
  },
47
47
  "keywords": [
48
48
  "eslint",
package/plugins/react.js CHANGED
@@ -131,6 +131,8 @@ module.exports = {
131
131
  'react/no-adjacent-inline-elements': 2,
132
132
  // prevent usage of Array index in keys
133
133
  'react/no-array-index-key': 1,
134
+ // lifecycle methods should be methods on the prototype, not class fields
135
+ 'react/no-arrow-function-lifecycle': 2,
134
136
  // prevent passing of children as props
135
137
  'react/no-children-prop': 2,
136
138
  // prevent usage of dangerous JSX props
@@ -147,6 +149,8 @@ module.exports = {
147
149
  'react/no-direct-mutation-state': 2,
148
150
  // prevent usage of findDOMNode
149
151
  'react/no-find-dom-node': 2,
152
+ // prevent usage of invalid attributes
153
+ 'react/no-invalid-html-attribute': 2,
150
154
  // prevent usage of isMounted
151
155
  'react/no-is-mounted': 2,
152
156
  // prevent multiple component definition per file
@@ -171,6 +175,8 @@ module.exports = {
171
175
  'react/no-unknown-property': 2,
172
176
  // prevent usage of unsafe lifecycle methods
173
177
  'react/no-unsafe': 2,
178
+ // Prevent declaring unused methods of component class
179
+ 'react/no-unused-class-component-methods': 2,
174
180
  // prevent definitions of unused prop types
175
181
  'react/no-unused-prop-types': 2,
176
182
  // prevent definition of unused state fields
@@ -87,6 +87,8 @@ module.exports = {
87
87
  'no-unsafe-negation': 2,
88
88
  // disallow use of optional chaining in contexts where the `undefined` value is not allowed
89
89
  'no-unsafe-optional-chaining': 2,
90
+ // disallow unused private class members
91
+ 'no-unused-private-class-members': 2,
90
92
  // disallow useless backreferences in regular expressions
91
93
  'no-useless-backreference': 2,
92
94
  // disallow assignments that can lead to race conditions due to usage of `await` or `yield`
@@ -191,6 +191,8 @@ module.exports = {
191
191
  }],
192
192
  // disallow the use of `Math.pow` in favor of the `**` operator
193
193
  'prefer-exponentiation-operator': 1,
194
+ // disallow use of `Object.prototype.hasOwnProperty.call()` and prefer use of `Object.hasOwn()`
195
+ 'prefer-object-has-own': 1,
194
196
  // prefer use of an object spread over `Object.assign`
195
197
  'prefer-object-spread': 1,
196
198
  // require quotes around object literal property names
package/CHANGELOG.md DELETED
@@ -1,504 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ## [23.0.0](https://github.com/zendeskgarden/eslint-config/compare/v22.0.0...v23.0.0) (2021-10-16)
6
-
7
-
8
- ### ⚠ BREAKING CHANGES
9
-
10
- * **deps:** upgrade to `eslint` v8.0.0.
11
-
12
- Plugin dependency versions:
13
- - `@typescript-eslint/eslint-plugin` ^5.0.0
14
- - `@typescript-eslint/parser` ^5.0.0
15
- - `eslint-plugin-jest` ^25.2.0
16
- - `eslint-plugin-jsx-a11y` ^6.4.0
17
- - `eslint-plugin-react` ^7.26.0
18
- - `eslint-plugin-react-hooks` ^4.2.0
19
-
20
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
21
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
22
- * **deps:** add `jest/require-hook` rule.
23
-
24
- Plugin dependency versions:
25
- - `@typescript-eslint/eslint-plugin` ^4.33.0
26
- - `eslint-plugin-jest` ^24.7.0
27
- - `eslint-plugin-jsx-a11y` ^6.4.0
28
- - `eslint-plugin-react` ^7.26.0
29
- - `eslint-plugin-react-hooks` ^4.2.0
30
-
31
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
32
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
33
-
34
- * **deps:** update all non-major dependencies ([#172](https://github.com/zendeskgarden/eslint-config/issues/172)) ([daf7799](https://github.com/zendeskgarden/eslint-config/commit/daf7799e4d8e5cccfa2982e6e5005bd4e8bb4332))
35
- * **deps:** update dependency eslint to v8 ([#173](https://github.com/zendeskgarden/eslint-config/issues/173)) ([c22840b](https://github.com/zendeskgarden/eslint-config/commit/c22840bfb61ea2f2ce295612538b19db67bcba91))
36
-
37
- ## [22.0.0](https://github.com/zendeskgarden/eslint-config/compare/v21.0.0...v22.0.0) (2021-10-07)
38
-
39
-
40
- ### ⚠ BREAKING CHANGES
41
-
42
- * added
43
- - @typescript-eslint/no-non-null-asserted-nullish-coalescing
44
- - @typescript-eslint/no-restricted-imports
45
- - jest/prefer-expect-resolves
46
- - jest/prefer-to-be
47
- - react/no-namespace
48
- * add `react/prefer-exact-props` rule.
49
-
50
- Plugin dependency versions:
51
- - `@typescript-eslint/eslint-plugin` ^4.30.0
52
- - `eslint-plugin-jsx-a11y` ^6.4.0
53
- - `eslint-plugin-react` ^7.25.0
54
- - `eslint-plugin-react-hooks` ^4.2.0
55
-
56
- ### Features
57
-
58
- * add new rules for jest, react, and typescript ([#171](https://github.com/zendeskgarden/eslint-config/issues/171)) ([82f34e8](https://github.com/zendeskgarden/eslint-config/commit/82f34e8fb52b850244618e2b1417bacaaeae74f6))
59
- * add react/prefer-exact-props rule ([#165](https://github.com/zendeskgarden/eslint-config/issues/165)) ([59964c6](https://github.com/zendeskgarden/eslint-config/commit/59964c684dbc2a998b194eb50fb84a56c45fde0e))
60
-
61
- ## [21.0.0](https://github.com/zendeskgarden/eslint-config/compare/v20.0.0...v21.0.0) (2021-08-17)
62
-
63
-
64
- ### ⚠ BREAKING CHANGES
65
-
66
- * add `@typescript-eslint/prefer-return-this-type` rule.
67
-
68
- Plugin dependency versions:
69
- - `@typescript-eslint/eslint-plugin` ^4.29.0
70
- - `eslint-plugin-jsx-a11y` ^6.4.0
71
- - `eslint-plugin-react` ^7.22.0
72
- - `eslint-plugin-react-hooks` ^4.2.0
73
-
74
- ### Features
75
-
76
- * add @typescript-eslint/prefer-return-this-type rule ([#161](https://github.com/zendeskgarden/eslint-config/issues/161)) ([d37238f](https://github.com/zendeskgarden/eslint-config/commit/d37238f8ec241ad7a48ee74ad756e50b3b23a36c))
77
-
78
- ## [20.0.0](https://github.com/zendeskgarden/eslint-config/compare/v19.0.0...v20.0.0) (2021-04-26)
79
-
80
-
81
- ### ⚠ BREAKING CHANGES
82
-
83
- * add `@typescript-eslint/no-unsafe-argument` rule.
84
-
85
- Plugin dependency versions:
86
- - `@typescript-eslint/eslint-plugin` ^4.22.0
87
- - `eslint-plugin-jsx-a11y` ^6.4.0
88
- - `eslint-plugin-react` ^7.22.0
89
- - `eslint-plugin-react-hooks` ^4.2.0
90
-
91
- ### Features
92
-
93
- * add @typescript-eslint/no-unsafe-argument rule ([#147](https://github.com/zendeskgarden/eslint-config/issues/147)) ([5255332](https://github.com/zendeskgarden/eslint-config/commit/52553326de8e0496cf66c26bf5a650a148cd038d))
94
-
95
-
96
- ### Bug Fixes
97
-
98
- * prevent husky from running on postinstall ([#143](https://github.com/zendeskgarden/eslint-config/issues/143)) ([40d4cca](https://github.com/zendeskgarden/eslint-config/commit/40d4cca568c7cb66ab8c0042a1dfb57a86d7e4ff))
99
-
100
- ## [19.0.0](https://github.com/zendeskgarden/eslint-config/compare/v18.0.0...v19.0.0) (2021-01-20)
101
-
102
-
103
- ### ⚠ BREAKING CHANGES
104
-
105
- * **deps:** add `@typescript-eslint/object-curly-spacing` rule.
106
-
107
- Plugin dependency versions:
108
- - `@typescript-eslint/eslint-plugin` ^4.14.0
109
- - `eslint-plugin-jsx-a11y` ^6.4.0
110
- - `eslint-plugin-react` ^7.22.0
111
- - `eslint-plugin-react-hooks` ^4.2.0
112
-
113
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
114
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
115
-
116
- * **deps:** update all non-major dependencies ([#135](https://github.com/zendeskgarden/eslint-config/issues/135)) ([48bc8b7](https://github.com/zendeskgarden/eslint-config/commit/48bc8b75b8516857fb92424cee629c90aede4a8a))
117
-
118
- ## [18.0.0](https://github.com/zendeskgarden/eslint-config/compare/v17.1.0...v18.0.0) (2021-01-06)
119
-
120
-
121
- ### ⚠ BREAKING CHANGES
122
-
123
- * **deps:** add `react/jsx-no-constructed-context-values` and `@typescript-eslint/sort-type-union-intersection-members` rules.
124
-
125
- Plugin dependency versions:
126
- - `@typescript-eslint/eslint-plugin` ^4.12.0
127
- - `eslint-plugin-jsx-a11y` ^6.4.0
128
- - `eslint-plugin-react` ^7.22.0
129
- - `eslint-plugin-react-hooks` ^4.2.0
130
-
131
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
132
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
133
-
134
- * **deps:** update all non-major dependencies ([#134](https://github.com/zendeskgarden/eslint-config/issues/134)) ([d561d8b](https://github.com/zendeskgarden/eslint-config/commit/d561d8b934de2155461163f1aa6ebd1361445483))
135
-
136
- ## [17.1.0](https://github.com/zendeskgarden/eslint-config/compare/v17.0.0...v17.1.0) (2021-01-04)
137
-
138
-
139
- ### Features
140
-
141
- * add TypeScript, React, and Jest plugins ([#132](https://github.com/zendeskgarden/eslint-config/issues/132)) ([8762f52](https://github.com/zendeskgarden/eslint-config/commit/8762f52d0d1eeef564671e461de19fa14b0ea8f0))
142
-
143
- ## [17.0.0](https://github.com/zendeskgarden/eslint-config/compare/v16.0.0...v17.0.0) (2020-12-22)
144
-
145
-
146
- ### ⚠ BREAKING CHANGES
147
-
148
- * **deps:** add new `no-unsafe-optional-chaining` rule
149
-
150
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
151
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
152
-
153
- * **deps:** update all non-major dependencies ([#130](https://github.com/zendeskgarden/eslint-config/issues/130)) ([8d83e36](https://github.com/zendeskgarden/eslint-config/commit/8d83e3662b68c038b8b3744d2dc0627b9f91e661))
154
-
155
- ## [16.0.0](https://github.com/zendeskgarden/eslint-config/compare/v15.0.0...v16.0.0) (2020-12-05)
156
-
157
-
158
- ### ⚠ BREAKING CHANGES
159
-
160
- * **deps:** update dependency eslint to v7.14.0 (#128)
161
-
162
- * **deps:** update dependency eslint to v7.14.0 ([#128](https://github.com/zendeskgarden/eslint-config/issues/128)) ([523dee3](https://github.com/zendeskgarden/eslint-config/commit/523dee3420ff26598435b1e515e5e3471e97eac5))
163
-
164
- ## [15.0.0](https://github.com/zendeskgarden/eslint-config/compare/v14.0.1...v15.0.0) (2020-07-29)
165
-
166
-
167
- ### ⚠ BREAKING CHANGES
168
-
169
- * **deps:** update dependency eslint to v7.5.0 (#118)
170
-
171
- * **deps:** update dependency eslint to v7.5.0 ([#118](https://github.com/zendeskgarden/eslint-config/issues/118)) ([d906672](https://github.com/zendeskgarden/eslint-config/commit/d906672bcead95f1da615dd9090155202f6b3782))
172
-
173
- ### [14.0.1](https://github.com/zendeskgarden/eslint-config/compare/v14.0.0...v14.0.1) (2020-07-15)
174
-
175
-
176
- ### Bug Fixes
177
-
178
- * eslint peer dependency ([#115](https://github.com/zendeskgarden/eslint-config/issues/115)) ([c786abf](https://github.com/zendeskgarden/eslint-config/commit/c786abfedc9c3be05dd6214da47e96518e69dc41))
179
-
180
- ## [14.0.0](https://github.com/zendeskgarden/eslint-config/compare/v13.0.0...v14.0.0) (2020-07-07)
181
-
182
-
183
- ### ⚠ BREAKING CHANGES
184
-
185
- * **deps:** adds rules for `no-promise-executor-return` and `no-unreachable-loop`.
186
-
187
- Co-authored-by: Renovate Bot <bot@renovateapp.com>
188
- Co-authored-by: Jonathan Zempel <jzempel@gmail.com>
189
-
190
- * **deps:** update dependency eslint to 7.4.0 ([#112](https://github.com/zendeskgarden/eslint-config/issues/112)) ([1ebb3c8](https://github.com/zendeskgarden/eslint-config/commit/1ebb3c8e91f8b52dbc2b66105355eac73f2e16de))
191
-
192
- ## [13.0.0](https://github.com/zendeskgarden/eslint-config/compare/v12.0.1...v13.0.0) (2020-05-26)
193
-
194
-
195
- ### ⚠ BREAKING CHANGES
196
-
197
- * **deps:** update dependency eslint to v7.1.0 (#108)
198
-
199
- * **deps:** update dependency eslint to v7.1.0 ([#108](https://github.com/zendeskgarden/eslint-config/issues/108)) ([64b8b3d](https://github.com/zendeskgarden/eslint-config/commit/64b8b3dfaa7d10f5b54a71761250614bc69848c4))
200
-
201
- ### [12.0.1](https://github.com/zendeskgarden/eslint-config/compare/v12.0.0...v12.0.1) (2020-05-16)
202
-
203
-
204
- ### Bug Fixes
205
-
206
- * dial back overly aggressive node plugin rules ([#106](https://github.com/zendeskgarden/eslint-config/issues/106)) ([d75d147](https://github.com/zendeskgarden/eslint-config/commit/d75d147a10b566c56569b02ec35856fed8cdd841))
207
-
208
- ## [12.0.0](https://github.com/zendeskgarden/eslint-config/compare/v11.0.4...v12.0.0) (2020-05-12)
209
-
210
-
211
- ### ⚠ BREAKING CHANGES
212
-
213
- * **deps:** peer dependencies require `eslint: ^7.0.0` and `eslint-plugin-node: ^11.1.0`
214
-
215
- * **deps:** update dependency eslint to v7 ([#104](https://github.com/zendeskgarden/eslint-config/issues/104)) ([058a414](https://github.com/zendeskgarden/eslint-config/commit/058a4147832ce5974509123f09ee8ddf8e4dc899))
216
-
217
- ### [11.0.4](https://github.com/zendeskgarden/eslint-config/compare/v11.0.3...v11.0.4) (2020-04-15)
218
-
219
-
220
- ### Bug Fixes
221
-
222
- * `space-before-function-paren` handling for async functions ([#100](https://github.com/zendeskgarden/eslint-config/issues/100)) ([14e5b88](https://github.com/zendeskgarden/eslint-config/commit/14e5b889e062793a915e1414472989c26a44098f))
223
- * use default CircleCI node_modules cache ([#97](https://github.com/zendeskgarden/eslint-config/issues/97)) ([d69416a](https://github.com/zendeskgarden/eslint-config/commit/d69416a3a967239a3d7aae00ee843c64c2a18908))
224
-
225
- ### [11.0.3](https://github.com/zendeskgarden/eslint-config/compare/v11.0.2...v11.0.3) (2020-03-05)
226
-
227
- ### [11.0.2](https://github.com/zendeskgarden/eslint-config/compare/v11.0.1...v11.0.2) (2020-03-05)
228
-
229
- ### [11.0.1](https://github.com/zendeskgarden/eslint-config/compare/v11.0.0...v11.0.1) (2019-12-19)
230
-
231
-
232
- ### Bug Fixes
233
-
234
- * eslint peer dependency version ([#85](https://github.com/zendeskgarden/eslint-config/issues/85)) ([7bd188d](https://github.com/zendeskgarden/eslint-config/commit/7bd188d96712e32b9eb7d44ab6cbc8ce8c749a62))
235
-
236
- ## [11.0.0](https://github.com/zendeskgarden/eslint-config/compare/v10.0.0...v11.0.0) (2019-11-25)
237
-
238
-
239
- ### ⚠ BREAKING CHANGES
240
-
241
- * **deps:** added
242
- - `grouped-accessor-pairs`
243
- - `no-constructor-return`
244
- - `no-dupe-else-if`
245
- - `no-setter-return`
246
- - `prefer-exponentiation-operator`
247
-
248
- * **deps:** update all non-major dependencies ([#82](https://github.com/zendeskgarden/eslint-config/issues/82)) ([5da6506](https://github.com/zendeskgarden/eslint-config/commit/5da6506373cabde7b5f84080ee53a1467e8c09b7))
249
-
250
- ## [10.0.0](https://github.com/zendeskgarden/eslint-config/compare/v9.0.0...v10.0.0) (2019-09-17)
251
-
252
-
253
- ### ⚠ BREAKING CHANGES
254
-
255
- * **deps:** add new rules that require eslint 6.4.0 or greater.
256
-
257
- * **deps:** update dependency eslint to v6.4.0 ([#75](https://github.com/zendeskgarden/eslint-config/issues/75)) ([db633aa](https://github.com/zendeskgarden/eslint-config/commit/db633aa))
258
-
259
- ## [9.0.0](https://github.com/zendeskgarden/eslint-config/compare/v8.0.0...v9.0.0) (2019-09-03)
260
-
261
-
262
- ### ⚠ BREAKING CHANGES
263
-
264
- * **deps:** add new `reportUnusedDisableDirectives` configuration setting (warns if detected)
265
-
266
- * **deps:** update dependency eslint to v6.3.0 ([#73](https://github.com/zendeskgarden/eslint-config/issues/73)) ([b985a80](https://github.com/zendeskgarden/eslint-config/commit/b985a80))
267
-
268
- ## [8.0.0](https://github.com/zendeskgarden/eslint-config/compare/v7.2.2...v8.0.0) (2019-08-21)
269
-
270
-
271
- ### ⚠ BREAKING CHANGES
272
-
273
- * **deps:** peer dependency bumped to `eslint: ^6.2.0` and updated config will throw a lint error on inconsistent `function-call-argument-newline` rule.
274
-
275
- * **deps:** update dependency eslint to v6.2.1 ([#68](https://github.com/zendeskgarden/eslint-config/issues/68)) ([c5104e1](https://github.com/zendeskgarden/eslint-config/commit/c5104e1))
276
-
277
- ### [7.2.2](https://github.com/zendeskgarden/eslint-config/compare/v7.2.1...v7.2.2) (2019-07-01)
278
-
279
-
280
-
281
- ## [7.2.1](https://github.com/zendeskgarden/eslint-config/compare/v7.2.0...v7.2.1) (2019-04-02)
282
-
283
-
284
-
285
- # [7.2.0](https://github.com/zendeskgarden/eslint-config/compare/v7.1.2...v7.2.0) (2019-03-06)
286
-
287
-
288
-
289
- ## [7.1.2](https://github.com/zendeskgarden/eslint-config/compare/v7.1.1...v7.1.2) (2019-02-21)
290
-
291
-
292
-
293
- <a name="7.1.1"></a>
294
- ## [7.1.1](https://github.com/zendeskgarden/eslint-config/compare/v7.1.0...v7.1.1) (2019-02-04)
295
-
296
-
297
-
298
- <a name="7.1.0"></a>
299
- # [7.1.0](https://github.com/zendeskgarden/eslint-config/compare/v7.0.10...v7.1.0) (2019-01-09)
300
-
301
-
302
- ### Features
303
-
304
- * upgrade to support eslint 5.12.x ([#39](https://github.com/zendeskgarden/eslint-config/issues/39)) ([3c93aee](https://github.com/zendeskgarden/eslint-config/commit/3c93aee))
305
-
306
-
307
-
308
- <a name="7.0.10"></a>
309
- ## [7.0.10](https://github.com/zendeskgarden/eslint-config/compare/v7.0.9...v7.0.10) (2018-12-10)
310
-
311
-
312
-
313
- <a name="7.0.9"></a>
314
- ## [7.0.9](https://github.com/zendeskgarden/eslint-config/compare/v7.0.8...v7.0.9) (2018-11-14)
315
-
316
-
317
-
318
- <a name="7.0.8"></a>
319
- ## [7.0.8](https://github.com/zendeskgarden/eslint-config/compare/v7.0.7...v7.0.8) (2018-10-30)
320
-
321
-
322
-
323
- <a name="7.0.7"></a>
324
- ## [7.0.7](https://github.com/zendeskgarden/eslint-config/compare/v7.0.6...v7.0.7) (2018-10-15)
325
-
326
-
327
-
328
- <a name="7.0.6"></a>
329
- ## [7.0.6](https://github.com/zendeskgarden/eslint-config/compare/v7.0.5...v7.0.6) (2018-09-24)
330
-
331
-
332
-
333
- <a name="7.0.5"></a>
334
- ## [7.0.5](https://github.com/zendeskgarden/eslint-config/compare/v7.0.4...v7.0.5) (2018-09-04)
335
-
336
-
337
-
338
- <a name="7.0.4"></a>
339
- ## [7.0.4](https://github.com/zendeskgarden/eslint-config/compare/v7.0.3...v7.0.4) (2018-08-20)
340
-
341
-
342
-
343
- <a name="7.0.3"></a>
344
- ## [7.0.3](https://github.com/zendeskgarden/eslint-config/compare/v7.0.2...v7.0.3) (2018-08-15)
345
-
346
-
347
- ### Bug Fixes
348
-
349
- * update the `eslint` peer dependency ([#20](https://github.com/zendeskgarden/eslint-config/issues/20)) ([1a8203f](https://github.com/zendeskgarden/eslint-config/commit/1a8203f))
350
-
351
-
352
-
353
- <a name="7.0.2"></a>
354
- ## [7.0.2](https://github.com/zendeskgarden/eslint-config/compare/v7.0.1...v7.0.2) (2018-08-13)
355
-
356
-
357
-
358
- <a name="7.0.1"></a>
359
- ## [7.0.1](https://github.com/zendeskgarden/eslint-config/compare/v7.0.0...v7.0.1) (2018-08-06)
360
-
361
-
362
-
363
- <a name="7.0.0"></a>
364
- # [7.0.0](https://github.com/zendeskgarden/eslint-config/compare/v6.0.0...v7.0.0) (2018-08-06)
365
-
366
-
367
- ### Features
368
-
369
- * upgrade to support eslint 5.3.x ([#17](https://github.com/zendeskgarden/eslint-config/issues/17)) ([4f47f80](https://github.com/zendeskgarden/eslint-config/commit/4f47f80))
370
-
371
-
372
- ### BREAKING CHANGES
373
-
374
- * existing code may fail with the addition of the following new rule error checking:
375
- * `require-unicode-regexp`
376
- * `no-async-promise-executor`
377
- * `no-misleading-character-class`
378
- * `require-atomic-updates`
379
-
380
-
381
-
382
- <a name="6.0.0"></a>
383
- # [6.0.0](https://github.com/zendeskgarden/eslint-config/compare/v5.0.2...v6.0.0) (2018-06-11)
384
-
385
-
386
- ### Features
387
-
388
- * upgrade to support eslint 5.x ([#15](https://github.com/zendeskgarden/eslint-config/issues/15)) ([39a386f](https://github.com/zendeskgarden/eslint-config/commit/39a386f))
389
-
390
-
391
- ### BREAKING CHANGES
392
-
393
- * upgrade eslint peer dependency from `4.18.x` to `5.x`.
394
-
395
- * set `parserOptions: { jsx: true }`
396
- * add `max-classes-per-file` configured to error if there is more than one
397
- * add `prefer-object-spread` configured to warn when `Object.assign` is called using an object literal as the first argument
398
-
399
-
400
-
401
- <a name="5.0.2"></a>
402
- ## [5.0.2](https://github.com/zendeskgarden/eslint-config/compare/v5.0.1...v5.0.2) (2018-03-21)
403
-
404
-
405
- ### Bug Fixes
406
-
407
- * improve package metadata ([#14](https://github.com/zendeskgarden/eslint-config/issues/14)) ([a6e3e66](https://github.com/zendeskgarden/eslint-config/commit/a6e3e66))
408
-
409
-
410
-
411
- <a name="5.0.1"></a>
412
- ## [5.0.1](https://github.com/zendeskgarden/eslint-config/compare/v5.0.0...v5.0.1) (2018-03-15)
413
-
414
-
415
- ### Bug Fixes
416
-
417
- * add "plugins" folder to published package ([#13](https://github.com/zendeskgarden/eslint-config/issues/13)) ([edc66c0](https://github.com/zendeskgarden/eslint-config/commit/edc66c0))
418
-
419
-
420
-
421
- <a name="5.0.0"></a>
422
- # [5.0.0](https://github.com/zendeskgarden/eslint-config/compare/v4.1.0...v5.0.0) (2018-03-14)
423
-
424
-
425
- ### Features
426
-
427
- * prepare for [@zendeskgarden](https://github.com/zendeskgarden) npm publish ([#12](https://github.com/zendeskgarden/eslint-config/issues/12)) ([d3130a5](https://github.com/zendeskgarden/eslint-config/commit/d3130a5))
428
-
429
-
430
- ### BREAKING CHANGES
431
-
432
- * package location has moved to the npm registry under `@zendeskgarden/eslint-config`. See the README for installation/upgrade details.
433
-
434
-
435
-
436
- <a name="4.1.0"></a>
437
- # [4.1.0](https://github.com/zendeskgarden/eslint-config/compare/v4.0.0...v4.1.0) (2018-02-21)
438
-
439
-
440
- ### Features
441
-
442
- * upgrade to support eslint 4.18.x ([#10](https://github.com/zendeskgarden/eslint-config/issues/10)) ([b38d815](https://github.com/zendeskgarden/eslint-config/commit/b38d815))
443
-
444
-
445
-
446
- <a name="4.0.0"></a>
447
- ## [4.0.0] - 2017-11-27
448
- ### Changed (per [#9](https://github.com/zendeskgarden/eslint-config/pull/9))
449
- - Upgrade to support eslint 4.x.
450
-
451
- ### Removed
452
- - The `eslint-plugin-sort-class-members` and rules for class member
453
- sorting.
454
-
455
- ## [3.0.1] - 2017-11-10
456
- ### Fixed (per [#7](https://github.com/zendeskgarden/eslint-config/pull/7))
457
- - Update `sort-class-members` config to be compatible with newer
458
- `eslint-plugin-sort-class-members` packages.
459
-
460
- ## [3.0.0] - 2017-05-26
461
- ### Changed (per [#6](https://github.com/zendeskgarden/eslint-config/pull/6))
462
- - Prepared package for registry publish as
463
- `@zendesk/eslint-config-garden`. See README for updated
464
- installation and usage.
465
- - Upgrade to support eslint 3.x.
466
-
467
- ## [2.1.0] - 2016-04-05
468
- ### Added (per [#3](https://github.com/zendeskgarden/eslint-config/pull/3))
469
- - Rules for class member sorting.
470
-
471
- ### Changed
472
- - Upgrade to support eslint 2.5.x.
473
-
474
- ## [2.0.1] - 2016-02-23
475
- ### Fixed (per [#5](https://github.com/zendeskgarden/eslint-config/pull/5))
476
- - Update `operator-linebreak` rule to "after".
477
-
478
- ## [2.0.0] - 2016-02-22
479
- ### Changed (per [#4](https://github.com/zendeskgarden/eslint-config/pull/4))
480
- - Upgrade to support eslint 2.2.x.
481
-
482
- ## [1.0.0] - 2016-01-04
483
- ### Changed (per [#2](https://github.com/zendeskgarden/eslint-config/pull/2))
484
- - Upgrade to support eslint 1.10.x.
485
-
486
- ## [0.2.1] - 2015-09-05
487
- ### Fixed
488
- - Allow short notation type conversions.
489
-
490
- ## [0.2.0] - 2015-08-31
491
- ### Changed (per [#1](https://github.com/zendeskgarden/eslint-config/pull/1))
492
- - Require parentheses around arrow function arguments as-needed.
493
-
494
- ## 0.1.0 - 2015-08-21
495
-
496
- [4.0.0]: https://github.com/zendeskgarden/eslint-config/compare/v3.0.1...v4.0.0
497
- [3.0.1]: https://github.com/zendeskgarden/eslint-config/compare/v3.0.0...v3.0.1
498
- [3.0.0]: https://github.com/zendeskgarden/eslint-config/compare/2.1.0...v3.0.0
499
- [2.1.0]: https://github.com/zendeskgarden/eslint-config/compare/2.0.1...2.1.0
500
- [2.0.1]: https://github.com/zendeskgarden/eslint-config/compare/2.0.0...2.0.1
501
- [2.0.0]: https://github.com/zendeskgarden/eslint-config/compare/1.0.0...2.0.0
502
- [1.0.0]: https://github.com/zendeskgarden/eslint-config/compare/0.2.1...1.0.0
503
- [0.2.1]: https://github.com/zendeskgarden/eslint-config/compare/0.2.0...0.2.1
504
- [0.2.0]: https://github.com/zendeskgarden/eslint-config/compare/0.1.0...0.2.0