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

Commit

Permalink
Add 0.7.2 (#75)
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
0xCLARITY authored Jun 22, 2020
1 parent c55ec00 commit 6132326
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 336 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Dependabot configuration
# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# GitHub Actions
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'

# NPM Dependencies
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
versioning-strategy: increase
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

## [Unreleased]

## 0.7.2 - June 22, 2020

- 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

## 0.7.1 - June 18, 2020

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

0 comments on commit 6132326

Please sign in to comment.