mirror of
https://github.com/ivuorinen/base-configs-semantic-release.git
synced 2026-01-26 03:34:00 +00:00
chore: clean up linting and remove unnecessary linters (#92)
This commit is contained in:
4
.github/renovate.json
vendored
4
.github/renovate.json
vendored
@@ -1,4 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["github>ivuorinen/renovate-config"]
|
||||
"extends": [
|
||||
"github>ivuorinen/renovate-config"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -10,7 +10,6 @@ VALIDATE_ALL_CODEBASE: true
|
||||
FILEIO_REPORTER: false # Generate file.io report
|
||||
GITHUB_STATUS_REPORTER: true # Generate GitHub status report
|
||||
IGNORE_GENERATED_FILES: true # Ignore generated files
|
||||
JAVASCRIPT_DEFAULT_STYLE: prettier # Default style for JavaScript
|
||||
PRINT_ALPACA: false # Print Alpaca logo in console
|
||||
SARIF_REPORTER: true # Generate SARIF report
|
||||
SHOW_SKIPPED_LINTERS: false # Show skipped linters in MegaLinter log
|
||||
@@ -21,12 +20,11 @@ DISABLE_LINTERS:
|
||||
ENABLE_LINTERS:
|
||||
- YAML_YAMLLINT
|
||||
- MARKDOWN_MARKDOWNLINT
|
||||
- YAML_PRETTIER
|
||||
- JSON_PRETTIER
|
||||
- JAVASCRIPT_ES
|
||||
- TYPESCRIPT_ES
|
||||
|
||||
YAML_YAMLLINT_CONFIG_FILE: .yamllint.yml
|
||||
YAML_YAMLLINT_FILTER_REGEX_EXCLUDE: CHANGELOG\.md
|
||||
MARKDOWN_MARKDOWNLINT_CONFIG_FILE: .markdownlint.json
|
||||
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.json
|
||||
TYPESCRIPT_ES_CONFIG_FILE: .eslintrc.json
|
||||
|
||||
@@ -3,17 +3,11 @@ repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v6.0.0
|
||||
hooks:
|
||||
- id: requirements-txt-fixer
|
||||
- id: detect-private-key
|
||||
- id: trailing-whitespace
|
||||
args: [--markdown-linebreak-ext=md]
|
||||
- id: check-case-conflict
|
||||
- id: check-merge-conflict
|
||||
- id: check-executables-have-shebangs
|
||||
- id: check-shebang-scripts-are-executable
|
||||
- id: check-symlinks
|
||||
- id: check-toml
|
||||
- id: check-xml
|
||||
- id: check-yaml
|
||||
args: [--allow-multiple-documents]
|
||||
- id: end-of-file-fixer
|
||||
@@ -27,37 +21,15 @@ repos:
|
||||
hooks:
|
||||
- id: markdownlint
|
||||
args: [-c, .markdownlint.json, --fix]
|
||||
exclude: '^CHANGELOG\.md$'
|
||||
|
||||
- repo: https://github.com/adrienverge/yamllint
|
||||
rev: v1.37.1
|
||||
hooks:
|
||||
- id: yamllint
|
||||
|
||||
- repo: https://github.com/scop/pre-commit-shfmt
|
||||
rev: v3.11.0-1
|
||||
hooks:
|
||||
- id: shfmt
|
||||
|
||||
- repo: https://github.com/koalaman/shellcheck-precommit
|
||||
rev: v0.11.0
|
||||
hooks:
|
||||
- id: shellcheck
|
||||
args: ["--severity=warning"]
|
||||
|
||||
- repo: https://github.com/rhysd/actionlint
|
||||
rev: v1.7.10
|
||||
hooks:
|
||||
- id: actionlint
|
||||
args: ["-shellcheck="]
|
||||
|
||||
- repo: https://github.com/renovatebot/pre-commit-hooks
|
||||
rev: 42.71.0
|
||||
hooks:
|
||||
- id: renovate-config-validator
|
||||
|
||||
- repo: https://github.com/bridgecrewio/checkov.git
|
||||
rev: "3.2.497"
|
||||
hooks:
|
||||
- id: checkov
|
||||
args:
|
||||
- "--quiet"
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
{
|
||||
"extends": ["./index.cjs"]
|
||||
"extends": [
|
||||
"./index.cjs"
|
||||
]
|
||||
}
|
||||
|
||||
82
CHANGELOG.md
82
CHANGELOG.md
@@ -5,7 +5,6 @@ All notable changes to this project will be documented in this file. See
|
||||
|
||||
# 1.0.0 (2025-12-06)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **github-action:** update github/codeql-action (v3.29.0 → v3.29.2) ([#2](https://github.com/ivuorinen/base-configs-semantic-release/issues/2)) ([a3f1c53](https://github.com/ivuorinen/base-configs-semantic-release/commit/a3f1c53777d50f30599554e1cac891f911108f09))
|
||||
@@ -22,7 +21,6 @@ All notable changes to this project will be documented in this file. See
|
||||
* **github-release:** update bridgecrewio/checkov (3.2.400 → 3.2.464) ([#19](https://github.com/ivuorinen/base-configs-semantic-release/issues/19)) ([c12d6cd](https://github.com/ivuorinen/base-configs-semantic-release/commit/c12d6cd30f3eef986a24bc57ef7fd2df63d630ae))
|
||||
* **github-release:** update renovatebot/pre-commit-hooks (41.82.7 → 41.82.8) ([#26](https://github.com/ivuorinen/base-configs-semantic-release/issues/26)) ([1bfb208](https://github.com/ivuorinen/base-configs-semantic-release/commit/1bfb20840cd252ff1081a5b7c23079077c5d425b))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **github-action:** update ivuorinen/actions (25.6.17 → 25.7.7) ([#3](https://github.com/ivuorinen/base-configs-semantic-release/issues/3)) ([d777728](https://github.com/ivuorinen/base-configs-semantic-release/commit/d777728889f75e0e9abc3a53ca743e0af8b231a9))
|
||||
@@ -50,7 +48,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update globals to 16.0.0 ([#342](https://github.com/ivuorinen/base-configs/issues/342)) ([04b333b](https://github.com/ivuorinen/base-configs/commit/04b333b445b6beb4344d2f9102bb5d3dc72ae26a))
|
||||
* **deps:** update globals to 16.0.0 ([#342](https://github.com/ivuorinen/base-configs/issues/342)) ([04b333b](https://github.com/ivuorinen/base-configs/commit/04b333b445b6beb4344d2f9102bb5d3dc72ae26a))
|
||||
|
||||
## [0.3.14](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.3.13...@ivuorinen/semantic-release-config@0.3.14) (2025-02-17)
|
||||
|
||||
@@ -72,7 +70,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update eslint-config-prettier to 10.0.1 ([#324](https://github.com/ivuorinen/base-configs/issues/324)) ([8a0d38e](https://github.com/ivuorinen/base-configs/commit/8a0d38e173df40b771d42b694a24145559200506))
|
||||
* **deps:** update eslint-config-prettier to 10.0.1 ([#324](https://github.com/ivuorinen/base-configs/issues/324)) ([8a0d38e](https://github.com/ivuorinen/base-configs/commit/8a0d38e173df40b771d42b694a24145559200506))
|
||||
|
||||
## [0.3.9](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.3.8...@ivuorinen/semantic-release-config@0.3.9) (2024-12-07)
|
||||
|
||||
@@ -94,25 +92,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- upgrade browserslist from 4.24.0 to 4.24.2 ([#302](https://github.com/ivuorinen/base-configs/issues/302)) ([cbb1754](https://github.com/ivuorinen/base-configs/commit/cbb17540f3cd7fc81f0032e557568c65ed0a9744))
|
||||
* upgrade browserslist from 4.24.0 to 4.24.2 ([#302](https://github.com/ivuorinen/base-configs/issues/302)) ([cbb1754](https://github.com/ivuorinen/base-configs/commit/cbb17540f3cd7fc81f0032e557568c65ed0a9744))
|
||||
|
||||
## 0.3.4 (2024-10-20)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- upgrade browserslist from 4.23.3 to 4.24.0 ([#297](https://github.com/ivuorinen/base-configs/issues/297)) ([a99c55a](https://github.com/ivuorinen/base-configs/commit/a99c55aab760142b5d77ad80ce5d44b25dde17d7))
|
||||
* upgrade browserslist from 4.23.3 to 4.24.0 ([#297](https://github.com/ivuorinen/base-configs/issues/297)) ([a99c55a](https://github.com/ivuorinen/base-configs/commit/a99c55aab760142b5d77ad80ce5d44b25dde17d7))
|
||||
|
||||
## 0.3.3 (2024-10-19)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- upgrade markdownlint-cli from 0.41.0 to 0.42.0 ([#298](https://github.com/ivuorinen/base-configs/issues/298)) ([f57190d](https://github.com/ivuorinen/base-configs/commit/f57190d55c27101f66583cc0000733b2707c1e5f))
|
||||
* upgrade markdownlint-cli from 0.41.0 to 0.42.0 ([#298](https://github.com/ivuorinen/base-configs/issues/298)) ([f57190d](https://github.com/ivuorinen/base-configs/commit/f57190d55c27101f66583cc0000733b2707c1e5f))
|
||||
|
||||
## [0.3.2](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.3.1...@ivuorinen/semantic-release-config@0.3.2) (2024-09-17)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **config:** add wrapper.mjs to included files ([c016fcb](https://github.com/ivuorinen/base-configs/commit/c016fcbfda8d53fbd59fc7689ef31a41359fc1d7))
|
||||
* **config:** add wrapper.mjs to included files ([c016fcb](https://github.com/ivuorinen/base-configs/commit/c016fcbfda8d53fbd59fc7689ef31a41359fc1d7))
|
||||
|
||||
## [0.3.1](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.3.0...@ivuorinen/semantic-release-config@0.3.1) (2024-08-28)
|
||||
|
||||
@@ -120,35 +118,35 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
# [0.3.0](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.24...@ivuorinen/semantic-release-config@0.3.0) (2024-08-21)
|
||||
|
||||
- feat!: module & commonjs in semantic-release ([57fbf1f](https://github.com/ivuorinen/base-configs/commit/57fbf1fd1f280063da2a9c2ac0e1f994836c4582))
|
||||
* feat!: module & commonjs in semantic-release ([57fbf1f](https://github.com/ivuorinen/base-configs/commit/57fbf1fd1f280063da2a9c2ac0e1f994836c4582))
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
- support module, and commonjs types
|
||||
* support module, and commonjs types
|
||||
|
||||
## [0.2.24](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.23...@ivuorinen/semantic-release-config@0.2.24) (2024-08-21)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update semantic-release to 24.1.0 ([#288](https://github.com/ivuorinen/base-configs/issues/288)) ([2c54329](https://github.com/ivuorinen/base-configs/commit/2c5432954a655a9b4b9075b61b85c6778267842d))
|
||||
* **deps:** update semantic-release to 24.1.0 ([#288](https://github.com/ivuorinen/base-configs/issues/288)) ([2c54329](https://github.com/ivuorinen/base-configs/commit/2c5432954a655a9b4b9075b61b85c6778267842d))
|
||||
|
||||
## 0.2.23 (2024-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
* **workflows:** commit lint fix ([3cc07cf](https://github.com/ivuorinen/base-configs/commit/3cc07cf3ffd8743860a07bb85aa4d275bb63094e))
|
||||
|
||||
## [0.2.22](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.21...@ivuorinen/semantic-release-config@0.2.22) (2024-06-04)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v24 ([#257](https://github.com/ivuorinen/base-configs/issues/257)) ([c8bcd0c](https://github.com/ivuorinen/base-configs/commit/c8bcd0c554b2512a0b8869d563352dd7bbba9804))
|
||||
* **deps:** update dependency semantic-release to v24 ([#257](https://github.com/ivuorinen/base-configs/issues/257)) ([c8bcd0c](https://github.com/ivuorinen/base-configs/commit/c8bcd0c554b2512a0b8869d563352dd7bbba9804))
|
||||
|
||||
## [0.2.21](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.20...@ivuorinen/semantic-release-config@0.2.21) (2024-05-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.1.1 ([#247](https://github.com/ivuorinen/base-configs/issues/247)) ([f3516e1](https://github.com/ivuorinen/base-configs/commit/f3516e1a8ed8c2f03b73e83a18400935c5622595))
|
||||
* **deps:** update dependency semantic-release to v23.1.1 ([#247](https://github.com/ivuorinen/base-configs/issues/247)) ([f3516e1](https://github.com/ivuorinen/base-configs/commit/f3516e1a8ed8c2f03b73e83a18400935c5622595))
|
||||
|
||||
## [0.2.20](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.19...@ivuorinen/semantic-release-config@0.2.20) (2024-05-05)
|
||||
|
||||
@@ -158,25 +156,25 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.8 ([b5bfb77](https://github.com/ivuorinen/base-configs/commit/b5bfb775fd4c626db28f7778333e813bec470d49))
|
||||
* **deps:** update dependency semantic-release to v23.0.8 ([b5bfb77](https://github.com/ivuorinen/base-configs/commit/b5bfb775fd4c626db28f7778333e813bec470d49))
|
||||
|
||||
## [0.2.18](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.17...@ivuorinen/semantic-release-config@0.2.18) (2024-04-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.7 ([9e6929e](https://github.com/ivuorinen/base-configs/commit/9e6929eb6b42dccb267a48267c07f9798ae234fd))
|
||||
* **deps:** update dependency semantic-release to v23.0.7 ([9e6929e](https://github.com/ivuorinen/base-configs/commit/9e6929eb6b42dccb267a48267c07f9798ae234fd))
|
||||
|
||||
## [0.2.17](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.16...@ivuorinen/semantic-release-config@0.2.17) (2024-03-28)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.6 ([5dc4dc8](https://github.com/ivuorinen/base-configs/commit/5dc4dc88fdde6816c6fd947877d180cd5be1139d))
|
||||
* **deps:** update dependency semantic-release to v23.0.6 ([5dc4dc8](https://github.com/ivuorinen/base-configs/commit/5dc4dc88fdde6816c6fd947877d180cd5be1139d))
|
||||
|
||||
## [0.2.16](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.15...@ivuorinen/semantic-release-config@0.2.16) (2024-03-22)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.5 ([a81f5d8](https://github.com/ivuorinen/base-configs/commit/a81f5d8889d5862de2a0dce1574fb17af0cb889b))
|
||||
* **deps:** update dependency semantic-release to v23.0.5 ([a81f5d8](https://github.com/ivuorinen/base-configs/commit/a81f5d8889d5862de2a0dce1574fb17af0cb889b))
|
||||
|
||||
## [0.2.15](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.14...@ivuorinen/semantic-release-config@0.2.15) (2024-03-20)
|
||||
|
||||
@@ -186,7 +184,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.3 ([8c7f744](https://github.com/ivuorinen/base-configs/commit/8c7f7440da52e4a5381b7b3f2bf7771269e5237a))
|
||||
* **deps:** update dependency semantic-release to v23.0.3 ([8c7f744](https://github.com/ivuorinen/base-configs/commit/8c7f7440da52e4a5381b7b3f2bf7771269e5237a))
|
||||
|
||||
## [0.2.13](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.12...@ivuorinen/semantic-release-config@0.2.13) (2024-02-21)
|
||||
|
||||
@@ -196,61 +194,61 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.2 ([#188](https://github.com/ivuorinen/base-configs/issues/188)) ([5d1d295](https://github.com/ivuorinen/base-configs/commit/5d1d29597d0b5d27d20cb72d09bc48ded343d49e))
|
||||
* **deps:** update dependency semantic-release to v23.0.2 ([#188](https://github.com/ivuorinen/base-configs/issues/188)) ([5d1d295](https://github.com/ivuorinen/base-configs/commit/5d1d29597d0b5d27d20cb72d09bc48ded343d49e))
|
||||
|
||||
## [0.2.11](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.10...@ivuorinen/semantic-release-config@0.2.11) (2024-02-10)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23.0.1 ([937014c](https://github.com/ivuorinen/base-configs/commit/937014c2b4ea36b12f3dc230b43a960d5df8431f))
|
||||
* **deps:** update dependency semantic-release to v23.0.1 ([937014c](https://github.com/ivuorinen/base-configs/commit/937014c2b4ea36b12f3dc230b43a960d5df8431f))
|
||||
|
||||
## [0.2.10](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.9...@ivuorinen/semantic-release-config@0.2.10) (2024-01-16)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v23 ([#173](https://github.com/ivuorinen/base-configs/issues/173)) ([a339252](https://github.com/ivuorinen/base-configs/commit/a33925203d12da5b39b6fc5ae13b414ed76091c1))
|
||||
* **deps:** update dependency semantic-release to v23 ([#173](https://github.com/ivuorinen/base-configs/issues/173)) ([a339252](https://github.com/ivuorinen/base-configs/commit/a33925203d12da5b39b6fc5ae13b414ed76091c1))
|
||||
|
||||
## [0.2.9](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.8...@ivuorinen/semantic-release-config@0.2.9) (2023-12-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.12 ([#155](https://github.com/ivuorinen/base-configs/issues/155)) ([19c20d2](https://github.com/ivuorinen/base-configs/commit/19c20d277f777a6d562f423bc8d72b090ea85555))
|
||||
* **deps:** update dependency semantic-release to v22.0.12 ([#155](https://github.com/ivuorinen/base-configs/issues/155)) ([19c20d2](https://github.com/ivuorinen/base-configs/commit/19c20d277f777a6d562f423bc8d72b090ea85555))
|
||||
|
||||
## [0.2.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.7...@ivuorinen/semantic-release-config@0.2.8) (2023-12-15)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update devdependencies (patch) ([b79252a](https://github.com/ivuorinen/base-configs/commit/b79252a163ae15462984c84fd7950fc74da902b6))
|
||||
* **deps:** update devdependencies (patch) ([b79252a](https://github.com/ivuorinen/base-configs/commit/b79252a163ae15462984c84fd7950fc74da902b6))
|
||||
|
||||
## [0.2.7](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.6...@ivuorinen/semantic-release-config@0.2.7) (2023-12-09)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.10 ([b777ad1](https://github.com/ivuorinen/base-configs/commit/b777ad19263c6f1ac823a8e9a1d3cac7231d17da))
|
||||
* **deps:** update dependency semantic-release to v22.0.10 ([b777ad1](https://github.com/ivuorinen/base-configs/commit/b777ad19263c6f1ac823a8e9a1d3cac7231d17da))
|
||||
|
||||
## [0.2.6](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.5...@ivuorinen/semantic-release-config@0.2.6) (2023-12-08)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.9 ([89af4ba](https://github.com/ivuorinen/base-configs/commit/89af4ba91c1143b4111ceaa74e0c62ecba01bf95))
|
||||
* **deps:** update dependency semantic-release to v22.0.9 ([89af4ba](https://github.com/ivuorinen/base-configs/commit/89af4ba91c1143b4111ceaa74e0c62ecba01bf95))
|
||||
|
||||
## [0.2.5](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.4...@ivuorinen/semantic-release-config@0.2.5) (2023-11-20)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.8 ([62f850b](https://github.com/ivuorinen/base-configs/commit/62f850b611cf92de670453e9019a9909dff02e07))
|
||||
* **deps:** update dependency semantic-release to v22.0.8 ([62f850b](https://github.com/ivuorinen/base-configs/commit/62f850b611cf92de670453e9019a9909dff02e07))
|
||||
|
||||
## [0.2.4](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.3...@ivuorinen/semantic-release-config@0.2.4) (2023-11-07)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.7 ([dcdb0d4](https://github.com/ivuorinen/base-configs/commit/dcdb0d4ef8499b6e6700b70ba54fde77044dc452))
|
||||
* **deps:** update dependency semantic-release to v22.0.7 ([dcdb0d4](https://github.com/ivuorinen/base-configs/commit/dcdb0d4ef8499b6e6700b70ba54fde77044dc452))
|
||||
|
||||
## [0.2.3](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.2...@ivuorinen/semantic-release-config@0.2.3) (2023-11-03)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22.0.6 ([aece014](https://github.com/ivuorinen/base-configs/commit/aece0141735c20a7fc4f2be578a99d020bcfd504))
|
||||
* **deps:** update dependency semantic-release to v22.0.6 ([aece014](https://github.com/ivuorinen/base-configs/commit/aece0141735c20a7fc4f2be578a99d020bcfd504))
|
||||
|
||||
## [0.2.2](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.2.1...@ivuorinen/semantic-release-config@0.2.2) (2023-10-31)
|
||||
|
||||
@@ -264,7 +262,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Features
|
||||
|
||||
- skip config creation if one already found ([#110](https://github.com/ivuorinen/base-configs/issues/110)) ([9beafec](https://github.com/ivuorinen/base-configs/commit/9beafec48681768f06ff24029391176d87169261))
|
||||
* skip config creation if one already found ([#110](https://github.com/ivuorinen/base-configs/issues/110)) ([9beafec](https://github.com/ivuorinen/base-configs/commit/9beafec48681768f06ff24029391176d87169261))
|
||||
|
||||
## [0.1.14](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.13...@ivuorinen/semantic-release-config@0.1.14) (2023-10-24)
|
||||
|
||||
@@ -274,31 +272,31 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v22 ([#97](https://github.com/ivuorinen/base-configs/issues/97)) ([a43c2d4](https://github.com/ivuorinen/base-configs/commit/a43c2d4b1c0e1ed792811c510594bfecb0176821))
|
||||
* **deps:** update dependency semantic-release to v22 ([#97](https://github.com/ivuorinen/base-configs/issues/97)) ([a43c2d4](https://github.com/ivuorinen/base-configs/commit/a43c2d4b1c0e1ed792811c510594bfecb0176821))
|
||||
|
||||
## [0.1.12](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.11...@ivuorinen/semantic-release-config@0.1.12) (2023-09-20)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.1.2 ([81dc3be](https://github.com/ivuorinen/base-configs/commit/81dc3bed603adfc2ff6a390e77641fff026263bc))
|
||||
* **deps:** update dependency semantic-release to v21.1.2 ([81dc3be](https://github.com/ivuorinen/base-configs/commit/81dc3bed603adfc2ff6a390e77641fff026263bc))
|
||||
|
||||
## [0.1.11](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.10...@ivuorinen/semantic-release-config@0.1.11) (2023-08-27)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.1.1 ([8bd4d48](https://github.com/ivuorinen/base-configs/commit/8bd4d486b5604c62e5c278903e2de30175dcbc43))
|
||||
* **deps:** update dependency semantic-release to v21.1.1 ([8bd4d48](https://github.com/ivuorinen/base-configs/commit/8bd4d486b5604c62e5c278903e2de30175dcbc43))
|
||||
|
||||
## [0.1.10](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.9...@ivuorinen/semantic-release-config@0.1.10) (2023-08-27)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.1.0 ([#84](https://github.com/ivuorinen/base-configs/issues/84)) ([7d5880a](https://github.com/ivuorinen/base-configs/commit/7d5880afcc5b03adcbdb948d1e985625852d23ab))
|
||||
* **deps:** update dependency semantic-release to v21.1.0 ([#84](https://github.com/ivuorinen/base-configs/issues/84)) ([7d5880a](https://github.com/ivuorinen/base-configs/commit/7d5880afcc5b03adcbdb948d1e985625852d23ab))
|
||||
|
||||
## [0.1.9](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.8...@ivuorinen/semantic-release-config@0.1.9) (2023-08-23)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.0.9 ([#80](https://github.com/ivuorinen/base-configs/issues/80)) ([d025d3d](https://github.com/ivuorinen/base-configs/commit/d025d3d67865308c111e4e0ad15343036caa946d))
|
||||
* **deps:** update dependency semantic-release to v21.0.9 ([#80](https://github.com/ivuorinen/base-configs/issues/80)) ([d025d3d](https://github.com/ivuorinen/base-configs/commit/d025d3d67865308c111e4e0ad15343036caa946d))
|
||||
|
||||
## [0.1.8](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.7...@ivuorinen/semantic-release-config@0.1.8) (2023-07-13)
|
||||
|
||||
@@ -308,40 +306,40 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.0.7 ([8780eb1](https://github.com/ivuorinen/base-configs/commit/8780eb1d24a4916613876182b29c92ea994ac53b))
|
||||
* **deps:** update dependency semantic-release to v21.0.7 ([8780eb1](https://github.com/ivuorinen/base-configs/commit/8780eb1d24a4916613876182b29c92ea994ac53b))
|
||||
|
||||
## [0.1.6](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.5...@ivuorinen/semantic-release-config@0.1.6) (2023-07-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.0.6 ([37216a6](https://github.com/ivuorinen/base-configs/commit/37216a6b8c8a68b37c815c36afd3ac66c66c9c3c))
|
||||
* **deps:** update dependency semantic-release to v21.0.6 ([37216a6](https://github.com/ivuorinen/base-configs/commit/37216a6b8c8a68b37c815c36afd3ac66c66c9c3c))
|
||||
|
||||
## [0.1.5](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.4...@ivuorinen/semantic-release-config@0.1.5) (2023-06-13)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.0.5 ([0e25283](https://github.com/ivuorinen/base-configs/commit/0e25283572ffaef56e29b909d2bdbc41d10d1695))
|
||||
* **deps:** update dependency semantic-release to v21.0.5 ([0e25283](https://github.com/ivuorinen/base-configs/commit/0e25283572ffaef56e29b909d2bdbc41d10d1695))
|
||||
|
||||
## [0.1.4](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.3...@ivuorinen/semantic-release-config@0.1.4) (2023-06-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21.0.3 ([c9daab8](https://github.com/ivuorinen/base-configs/commit/c9daab8b2006b65c3b4619fc084202e4c8007035))
|
||||
* **deps:** update dependency semantic-release to v21.0.3 ([c9daab8](https://github.com/ivuorinen/base-configs/commit/c9daab8b2006b65c3b4619fc084202e4c8007035))
|
||||
|
||||
## [0.1.3](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.2...@ivuorinen/semantic-release-config@0.1.3) (2023-05-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v21 ([#14](https://github.com/ivuorinen/base-configs/issues/14)) ([c0490fb](https://github.com/ivuorinen/base-configs/commit/c0490fb320f7b340a17cdb26066e9e6aaa473adf))
|
||||
* **deps:** update dependency semantic-release to v21 ([#14](https://github.com/ivuorinen/base-configs/issues/14)) ([c0490fb](https://github.com/ivuorinen/base-configs/commit/c0490fb320f7b340a17cdb26066e9e6aaa473adf))
|
||||
|
||||
## [0.1.2](https://github.com/ivuorinen/base-configs/compare/@ivuorinen/semantic-release-config@0.1.1...@ivuorinen/semantic-release-config@0.1.2) (2023-05-06)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update dependency semantic-release to v20 ([#13](https://github.com/ivuorinen/base-configs/issues/13)) ([102b5ce](https://github.com/ivuorinen/base-configs/commit/102b5cedde744995754e64e17cccddaf4179e764))
|
||||
* **deps:** update dependency semantic-release to v20 ([#13](https://github.com/ivuorinen/base-configs/issues/13)) ([102b5ce](https://github.com/ivuorinen/base-configs/commit/102b5cedde744995754e64e17cccddaf4179e764))
|
||||
|
||||
## 0.1.1 (2023-05-04)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- **deps:** update devdependencies (patch) ([#4](https://github.com/ivuorinen/base-configs/issues/4)) ([d87c0cf](https://github.com/ivuorinen/base-configs/commit/d87c0cf5fd2494b0577086e590b72f4ec7bb30ee))
|
||||
* **deps:** update devdependencies (patch) ([#4](https://github.com/ivuorinen/base-configs/issues/4)) ([d87c0cf](https://github.com/ivuorinen/base-configs/commit/d87c0cf5fd2494b0577086e590b72f4ec7bb30ee))
|
||||
|
||||
Reference in New Issue
Block a user