Skip to content

Commit

Permalink
chore: bump version to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arianrhodsandlot committed Apr 30, 2024
1 parent f6de926 commit ea16e72
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.0] - 2024-04-30
### Added
- Detect should enable diff automatically

### Fixed
- Remove redundant rules
- Update a few rules

## [0.12.2] - 2024-04-28
### Fixed
- Fix default prettier config
Expand Down Expand Up @@ -182,7 +190,8 @@ Update several rules
### Added
- First release!

[unreleased]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.12.2...HEAD
[unreleased]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.12.2...v0.13.0
[0.12.2]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/arianrhodsandlot/eslint-config/compare/v0.11.3...v0.12.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arianrhodsandlot/eslint-config",
"version": "0.12.2",
"version": "0.13.0",
"description": "A set of predefined ESLint config.",
"keywords": [
"eslint",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ export function shouldEnableDiff() {
const shortlog = `${execSync('git shortlog -sne --no-merges --all')}`.trim()
const [majorLine] = shortlog.split('\n')
const myKeywords = ['arianrhod', 'theguidanceofawhitetower@gmail.com', 'thefalsegodofcausality@outlook.com']
return myKeywords.some((myKeyword) => majorLine.includes(myKeyword))
return myKeywords.every((myKeyword) => !majorLine.includes(myKeyword))
}

0 comments on commit ea16e72

Please sign in to comment.