Skip to content
This repository was archived by the owner on Jan 19, 2024. It is now read-only.

Commit 6132326

Browse files
authored
Add 0.7.2 (#75)
- Upgrade `eslint` to `7.3.0`, and add two new rules: - `no-promise-executor-return` - `no-unreachable-loop` - Upgrade `@typescript-eslint` to `3.4.0`: - Add `@typescript-eslint/no-loss-of-precision` rule that allows `123_456` numerical separators. - Upgrade `eslint-plugin-jsdoc` to `28.0.0` - Add Dependabot configuration to only bug me weekly
1 parent c55ec00 commit 6132326

File tree

6 files changed

+134
-336
lines changed

6 files changed

+134
-336
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Dependabot configuration
2+
# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
3+
version: 2
4+
updates:
5+
# GitHub Actions
6+
- package-ecosystem: 'github-actions'
7+
directory: '/'
8+
schedule:
9+
interval: 'weekly'
10+
11+
# NPM Dependencies
12+
- package-ecosystem: 'npm'
13+
directory: '/'
14+
schedule:
15+
interval: 'weekly'
16+
versioning-strategy: increase

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
99

1010
## [Unreleased]
1111

12+
## 0.7.2 - June 22, 2020
13+
14+
- Upgrade `eslint` to `7.3.0`, and add two new rules:
15+
- `no-promise-executor-return`
16+
- `no-unreachable-loop`
17+
- Upgrade `@typescript-eslint` to `3.4.0`:
18+
- Add `@typescript-eslint/no-loss-of-precision` rule that allows `123_456` numerical separators.
19+
- Upgrade `eslint-plugin-jsdoc` to `28.0.0`
20+
- Add Dependabot configuration to only bug me weekly
21+
1222
## 0.7.1 - June 18, 2020
1323

1424
Upgrade `eslint-plugin-jsdoc`, and require a new rule `require-throws`, which requires documenting all functions that `throw` an error.

0 commit comments

Comments
 (0)