Skip to content

Commit 7a9d638

Browse files
committed
1 parent bb70eb9 commit 7a9d638

File tree

8 files changed

+100
-4
lines changed

8 files changed

+100
-4
lines changed

packages/eslint-config-zillow-base/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-alpha.2](https://github.com/zillow/javascript/compare/eslint-config-zillow-base@[email protected]) (2020-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **errors:** Move no-restricted-exports to es6 rules, enable ([b9845de](https://github.com/zillow/javascript/commit/b9845de293732b01d8c9c6221deccbcdd700fd42))
12+
* **errors:** Turn off require-atomic-updates, it is very buggy ([abb2346](https://github.com/zillow/javascript/commit/abb23464c22aeb83236775501629c3f7dd2a5d36))
13+
* **rules:** Turn off default-param-last until it is configurable ([c05d872](https://github.com/zillow/javascript/commit/c05d872f553c368b571f9babd82764a21189019a))
14+
15+
16+
### Features
17+
18+
* **peer:** eslint >= 7.4.0 ([828ce5a](https://github.com/zillow/javascript/commit/828ce5a7fa03d72e84976f679d8c582a77a4b987))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* **peer:** The minimum peer version of eslint is now 7.4.0.
24+
25+
26+
27+
28+
629
# [4.0.0-alpha.1](https://github.com/zillow/javascript/compare/eslint-config-zillow-base@[email protected]) (2020-09-28)
730

831
**Note:** Version bump only for package eslint-config-zillow-base

packages/eslint-config-zillow-base/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-zillow-base",
3-
"version": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
44
"description": "Zillow's base ESLint config, following our code conventions",
55
"main": "index.js",
66
"files": [

packages/eslint-config-zillow-typescript/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0-alpha.2](https://github.com/zillow/javascript/compare/eslint-config-zillow-typescript@[email protected]) (2020-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **rules:** Turn off default-param-last until it is configurable ([c05d872](https://github.com/zillow/javascript/commit/c05d872f553c368b571f9babd82764a21189019a))
12+
* **typescript:** Enable auto-fix for ban-types 'object' case ([bb70eb9](https://github.com/zillow/javascript/commit/bb70eb9d014a6c276e0446f6b09055023dc065e3))
13+
* **typescript:** Extend no-shadow allow list to accommodate common patterns ([5e4013e](https://github.com/zillow/javascript/commit/5e4013e9697f2d28229bf964894941903f003d28))
14+
* **typescript:** Flesh out no-empty-function allow list ([1d9438a](https://github.com/zillow/javascript/commit/1d9438acdef5e61dee9c78c16a7690654ab8668a))
15+
* **typescript:** Turn off explicit-module-boundary-types, too much noise ([25ac226](https://github.com/zillow/javascript/commit/25ac226ffc2af781089f78f12fabb47255b0f308))
16+
* **typescript:** Turn off no-implicit-any-catch, too much noise ([4e1ac62](https://github.com/zillow/javascript/commit/4e1ac62d1219b7380f984d429385e5e6134996b8))
17+
* **typescript:** Turn off react/prop-types in TSX files ([6249318](https://github.com/zillow/javascript/commit/6249318bdc5b0250161d7a34070b4a104b7657c5))
18+
19+
20+
### Features
21+
22+
* **peer:** eslint >= 7.4.0 ([828ce5a](https://github.com/zillow/javascript/commit/828ce5a7fa03d72e84976f679d8c582a77a4b987))
23+
24+
25+
### BREAKING CHANGES
26+
27+
* **peer:** The minimum peer version of eslint is now 7.4.0.
28+
29+
30+
31+
32+
633
# [1.0.0-alpha.1](https://github.com/zillow/javascript/compare/eslint-config-zillow-typescript@[email protected]) (2020-09-28)
734

835
**Note:** Version bump only for package eslint-config-zillow-typescript

packages/eslint-config-zillow-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-zillow-typescript",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"description": "Zillow's ESLint config for TypeScript, following our code conventions",
55
"main": "index.js",
66
"files": [

packages/eslint-config-zillow/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-alpha.3](https://github.com/zillow/javascript/compare/[email protected]@4.0.0-alpha.3) (2020-09-29)
7+
8+
9+
### Features
10+
11+
* **peer:** eslint >= 7.4.0 ([828ce5a](https://github.com/zillow/javascript/commit/828ce5a7fa03d72e84976f679d8c582a77a4b987))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **peer:** The minimum peer version of eslint is now 7.4.0.
17+
18+
19+
20+
21+
622
# [4.0.0-alpha.2](https://github.com/zillow/javascript/compare/[email protected]@4.0.0-alpha.2) (2020-09-28)
723

824

packages/eslint-config-zillow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-zillow",
3-
"version": "4.0.0-alpha.2",
3+
"version": "4.0.0-alpha.3",
44
"description": "Zillow's ESLint config, following our code conventions",
55
"main": "index.js",
66
"files": [

packages/eslint-plugin-zillow/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0-alpha.6](https://github.com/zillow/javascript/compare/[email protected]@4.0.0-alpha.6) (2020-09-29)
7+
8+
9+
### Bug Fixes
10+
11+
* **errors:** Move no-restricted-exports to es6 rules, enable ([b9845de](https://github.com/zillow/javascript/commit/b9845de293732b01d8c9c6221deccbcdd700fd42))
12+
* **errors:** Turn off require-atomic-updates, it is very buggy ([abb2346](https://github.com/zillow/javascript/commit/abb23464c22aeb83236775501629c3f7dd2a5d36))
13+
* **jest:** Turn off TypeScript no-invalid-void-type rule in tests ([91fb3ba](https://github.com/zillow/javascript/commit/91fb3bae4b79443820370730474bad9e27961206))
14+
* **rules:** Turn off default-param-last until it is configurable ([c05d872](https://github.com/zillow/javascript/commit/c05d872f553c368b571f9babd82764a21189019a))
15+
* **typescript:** Enable auto-fix for ban-types 'object' case ([bb70eb9](https://github.com/zillow/javascript/commit/bb70eb9d014a6c276e0446f6b09055023dc065e3))
16+
* **typescript:** Extend no-shadow allow list to accommodate common patterns ([5e4013e](https://github.com/zillow/javascript/commit/5e4013e9697f2d28229bf964894941903f003d28))
17+
* **typescript:** Flesh out no-empty-function allow list ([1d9438a](https://github.com/zillow/javascript/commit/1d9438acdef5e61dee9c78c16a7690654ab8668a))
18+
* **typescript:** Turn off explicit-module-boundary-types, too much noise ([25ac226](https://github.com/zillow/javascript/commit/25ac226ffc2af781089f78f12fabb47255b0f308))
19+
* **typescript:** Turn off no-implicit-any-catch, too much noise ([4e1ac62](https://github.com/zillow/javascript/commit/4e1ac62d1219b7380f984d429385e5e6134996b8))
20+
* **typescript:** Turn off react/prop-types in TSX files ([6249318](https://github.com/zillow/javascript/commit/6249318bdc5b0250161d7a34070b4a104b7657c5))
21+
22+
23+
### Features
24+
25+
* **peer:** eslint >= 7.4.0 ([828ce5a](https://github.com/zillow/javascript/commit/828ce5a7fa03d72e84976f679d8c582a77a4b987))
26+
27+
28+
### BREAKING CHANGES
29+
30+
* **peer:** The minimum peer version of eslint is now 7.4.0.
31+
32+
33+
34+
35+
636
# [4.0.0-alpha.5](https://github.com/zillow/javascript/compare/[email protected]@4.0.0-alpha.5) (2020-09-28)
737

838

packages/eslint-plugin-zillow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-zillow",
3-
"version": "4.0.0-alpha.5",
3+
"version": "4.0.0-alpha.6",
44
"description": "Zillow's ESLint config bundled into a \"zero-conf\" plugin",
55
"keywords": [
66
"eslint",

0 commit comments

Comments
 (0)