Skip to content

Commit

Permalink
Update changelog, bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
p.kabir committed Apr 29, 2020
1 parent 2e9e472 commit be521ca
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 9 deletions.
42 changes: 38 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,46 @@
# 3.0.2
# Changelog

## 4.0.1

**BREAKING CHANGES**, Typescript 3.8.2 required.

Enabled the following rules:

```typescript
'@typescript-eslint/promise-function-async'
'@typescript-eslint/no-misused-new'
'@typescript-eslint/no-misused-promises'
'@typescript-eslint/await-thenable'
'@typescript-eslint/require-await'
'@typescript-eslint/return-await'
'@typescript-eslint/no-unsafe-return'
'@typescript-eslint/prefer-ts-expect-error'
'@typescript-eslint/no-throw-literal',
'@typescript-eslint/no-invalid-void-type'
'@typescript-eslint/switch-exhaustiveness-check'
'@typescript-eslint/no-empty-function'
'@typescript-eslint/no-unnecessary-qualifier',
'@typescript-eslint/method-signature-style': ['error', 'property']
'@typescript-eslint/no-base-to-string'
'@typescript-eslint/no-unnecessary-condition': ['error', { allowConstantLoopConditions: true }]
'@typescript-eslint/prefer-string-starts-ends-with',
'@typescript-eslint/prefer-includes',
'@typescript-eslint/prefer-readonly': 'error',
'@typescript-eslint/prefer-nullish-coalescing': 'error',
'@typescript-eslint/prefer-optional-chain': 'error',
'@typescript-eslint/prefer-as-const': 'error',
'@typescript-eslint/restrict-template-expressions': 'error',
```

## 3.0.2

Removed the unavailable rule `prefer-interface`.

# 3.0.1
## 3.0.1

Fix the `array-type` bug introduced by a breaking change in rule configuration.

# 3.0.0
## 3.0.0

Updated minimal dependencies to support latest TypeScript features:

Expand All @@ -17,6 +51,6 @@ Updated minimal dependencies to support latest TypeScript features:
"eslint-plugin-react": "^7.18.3"
```

# 2.0.0
## 2.0.0

Enabled [strict boolean expression checking](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/strict-boolean-expressions.md) for better handling of "yes / no / maybe" cases.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
"prettier": "^1.17.1"
},
"peerDependencies": {
"typescript": "*",
"typescript": "^3.8.2",
"eslint": "*"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3"
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0"
}
}

0 comments on commit be521ca

Please sign in to comment.