chore: linting and semantic-commit plugins

This commit is contained in:
2025-12-06 23:54:07 +01:00
parent c8496e7dd6
commit 8fb98907cd
7 changed files with 384 additions and 387 deletions

6
.github/SECURITY.md vendored
View File

@@ -2,10 +2,8 @@
## Supported Versions ## Supported Versions
Only the latest versions of the configuration packages and Only the latest versions of the configuration packages and the base package are as of now supported.
the base package are as of now supported.
## Reporting a Vulnerability ## Reporting a Vulnerability
This repository has automatic package update systems in place. This repository has automatic package update systems in place. If you find a vulnerability, please send me email and I'll fix it as soon as possible.
If you find a vulnerability, please send me email and I'll fix it as soon as possible.

108
.github/labels.yml vendored
View File

@@ -1,88 +1,88 @@
--- ---
- name: "breaking-change" - name: 'breaking-change'
color: ee0701 color: ee0701
description: "A breaking change for existing users." description: 'A breaking change for existing users.'
- name: "bugfix" - name: 'bugfix'
color: ee0701 color: ee0701
description: "Inconsistencies or issues which will cause a problem for users or implementors." description: 'Inconsistencies or issues which will cause a problem for users or implementors.'
- name: "documentation" - name: 'documentation'
color: 0052cc color: 0052cc
description: "Solely about the documentation of the project." description: 'Solely about the documentation of the project.'
- name: "enhancement" - name: 'enhancement'
color: 1d76db color: 1d76db
description: "Enhancement of the code, not introducing new features." description: 'Enhancement of the code, not introducing new features.'
- name: "refactor" - name: 'refactor'
color: 1d76db color: 1d76db
description: "Improvement of existing code, not introducing new features." description: 'Improvement of existing code, not introducing new features.'
- name: "performance" - name: 'performance'
color: 1d76db color: 1d76db
description: "Improving performance, not introducing new features." description: 'Improving performance, not introducing new features.'
- name: "new-feature" - name: 'new-feature'
color: 0e8a16 color: 0e8a16
description: "New features or options." description: 'New features or options.'
- name: "maintenance" - name: 'maintenance'
color: 2af79e color: 2af79e
description: "Generic maintenance tasks." description: 'Generic maintenance tasks.'
- name: "ci" - name: 'ci'
color: 1d76db color: 1d76db
description: "Work that improves the continue integration." description: 'Work that improves the continue integration.'
- name: "dependencies" - name: 'dependencies'
color: 1d76db color: 1d76db
description: "Upgrade or downgrade of project dependencies." description: 'Upgrade or downgrade of project dependencies.'
- name: "translations" - name: 'translations'
color: d4c5f9 color: d4c5f9
description: "Impacts translations." description: 'Impacts translations.'
- name: "in-progress" - name: 'in-progress'
color: fbca04 color: fbca04
description: "Issue is currently being resolved by a developer." description: 'Issue is currently being resolved by a developer.'
- name: "stale" - name: 'stale'
color: fef2c0 color: fef2c0
description: "There has not been activity on this issue or PR for quite some time." description: 'There has not been activity on this issue or PR for quite some time.'
- name: "no-stale" - name: 'no-stale'
color: fef2c0 color: fef2c0
description: "This issue or PR is exempted from the stable bot." description: 'This issue or PR is exempted from the stable bot.'
- name: "security" - name: 'security'
color: ee0701 color: ee0701
description: "Marks a security issue that needs to be resolved asap." description: 'Marks a security issue that needs to be resolved asap.'
- name: "incomplete" - name: 'incomplete'
color: fef2c0 color: fef2c0
description: "Marks a PR or issue that is missing information." description: 'Marks a PR or issue that is missing information.'
- name: "invalid" - name: 'invalid'
color: fef2c0 color: fef2c0
description: "Marks a PR or issue that is missing information." description: 'Marks a PR or issue that is missing information.'
- name: "beginner-friendly" - name: 'beginner-friendly'
color: 0e8a16 color: 0e8a16
description: "Good first issue for people wanting to contribute to the project." description: 'Good first issue for people wanting to contribute to the project.'
- name: "help-wanted" - name: 'help-wanted'
color: 0e8a16 color: 0e8a16
description: "We need some extra helping hands or expertise in order to resolve this." description: 'We need some extra helping hands or expertise in order to resolve this.'
- name: "hacktoberfest" - name: 'hacktoberfest'
description: "Issues/PRs are participating in the Hacktoberfest." description: 'Issues/PRs are participating in the Hacktoberfest.'
color: fbca04 color: fbca04
- name: "hacktoberfest-accepted" - name: 'hacktoberfest-accepted'
description: "Issues/PRs are participating in the Hacktoberfest." description: 'Issues/PRs are participating in the Hacktoberfest.'
color: fbca04 color: fbca04
- name: "priority-critical" - name: 'priority-critical'
color: ee0701 color: ee0701
description: "This should be dealt with ASAP. Not fixing this issue would be a serious error." description: 'This should be dealt with ASAP. Not fixing this issue would be a serious error.'
- name: "priority-high" - name: 'priority-high'
color: b60205 color: b60205
description: "After critical issues are fixed, these should be dealt with before any further issues." description: 'After critical issues are fixed, these should be dealt with before any further issues.'
- name: "priority-medium" - name: 'priority-medium'
color: 0e8a16 color: 0e8a16
description: "This issue may be useful, and needs some attention." description: 'This issue may be useful, and needs some attention.'
- name: "priority-low" - name: 'priority-low'
color: e4ea8a color: e4ea8a
description: "Nice addition, maybe... someday..." description: 'Nice addition, maybe... someday...'
- name: "major" - name: 'major'
color: b60205 color: b60205
description: "This PR causes a major version bump in the version number." description: 'This PR causes a major version bump in the version number.'
- name: "minor" - name: 'minor'
color: 0e8a16 color: 0e8a16
description: "This PR causes a minor version bump in the version number." description: 'This PR causes a minor version bump in the version number.'

View File

@@ -1,14 +1,14 @@
--- ---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "CodeQL" name: 'CodeQL'
on: on:
push: push:
branches: ["main"] branches: ['main']
pull_request: pull_request:
branches: ["main"] branches: ['main']
schedule: schedule:
- cron: "30 1 * * 0" # Run at 1:30 AM UTC every Sunday - cron: '30 1 * * 0' # Run at 1:30 AM UTC every Sunday
merge_group: merge_group:
permissions: permissions:
@@ -25,7 +25,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
language: ["javascript", "actions"] # Add languages used in your actions language: ['javascript', 'actions'] # Add languages used in your actions
steps: steps:
- name: Checkout repository - name: Checkout repository
@@ -43,4 +43,4 @@ jobs:
- name: Perform CodeQL Analysis - name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7 uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v4.31.7
with: with:
category: "/language:${{matrix.language}}" category: '/language:${{matrix.language}}'

View File

@@ -24,9 +24,9 @@ jobs:
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with: with:
always-auth: true always-auth: true
node-version-file: ".nvmrc" node-version-file: '.nvmrc'
registry-url: "https://registry.npmjs.org" registry-url: 'https://registry.npmjs.org'
scope: "@ivuorinen" scope: '@ivuorinen'
- name: Cache Node Modules - name: Cache Node Modules
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0 uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0

View File

@@ -49,9 +49,9 @@ jobs:
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0 uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with: with:
always-auth: true always-auth: true
node-version-file: ".nvmrc" node-version-file: '.nvmrc'
registry-url: "https://registry.npmjs.org" registry-url: 'https://registry.npmjs.org'
scope: "@ivuorinen" scope: '@ivuorinen'
- name: Install and enable corepack - name: Install and enable corepack
shell: sh shell: sh
@@ -71,6 +71,11 @@ jobs:
- name: Semantic Release - name: Semantic Release
uses: cycjimmy/semantic-release-action@b12c8f6015dc215fe37bc154d4ad456dd3833c90 # v6.0.0 uses: cycjimmy/semantic-release-action@b12c8f6015dc215fe37bc154d4ad456dd3833c90 # v6.0.0
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/github
@semantic-release/npm
env: env:
GITHUB_TOKEN: ${{ secrets.PAT }} GITHUB_TOKEN: ${{ secrets.PAT }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -1,333 +1,327 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. See All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 1.0.0 (2025-12-06) # 1.0.0 (2025-12-06)
- feat!: module & commonjs in base-configs ([02e4f47](https://github.com/ivuorinen/base-configs/commit/02e4f4779c79e5e179b3fb31b9a642d9ec96f862))
* feat!: module & commonjs in base-configs ([02e4f47](https://github.com/ivuorinen/base-configs/commit/02e4f4779c79e5e179b3fb31b9a642d9ec96f862)) - feat!: module & commonjs in browserslist ([93ea840](https://github.com/ivuorinen/base-configs/commit/93ea8404064e62c720460b2d808fc9d39a00ec31))
* feat!: module & commonjs in browserslist ([93ea840](https://github.com/ivuorinen/base-configs/commit/93ea8404064e62c720460b2d808fc9d39a00ec31)) - feat!: module & commonjs in commitlint ([2de156e](https://github.com/ivuorinen/base-configs/commit/2de156e2c0f474fe19d23cc2b4b9b6eaba97e258))
* feat!: module & commonjs in commitlint ([2de156e](https://github.com/ivuorinen/base-configs/commit/2de156e2c0f474fe19d23cc2b4b9b6eaba97e258)) - feat!: module & commonjs in markdownlint ([ca479de](https://github.com/ivuorinen/base-configs/commit/ca479deb20f65f048f128b284c2f178ca9e90ea2))
* feat!: module & commonjs in markdownlint ([ca479de](https://github.com/ivuorinen/base-configs/commit/ca479deb20f65f048f128b284c2f178ca9e90ea2)) - feat!: module & commonjs in prettier ([12ea368](https://github.com/ivuorinen/base-configs/commit/12ea3688ad61ea5b21762225b9b41b30a1995198))
* feat!: module & commonjs in prettier ([12ea368](https://github.com/ivuorinen/base-configs/commit/12ea3688ad61ea5b21762225b9b41b30a1995198)) - feat!: module & commonjs in prettier ([8d3dbd8](https://github.com/ivuorinen/base-configs/commit/8d3dbd89e8dbaaa2df12eb9900fdf0cfa566a65c))
* feat!: module & commonjs in prettier ([8d3dbd8](https://github.com/ivuorinen/base-configs/commit/8d3dbd89e8dbaaa2df12eb9900fdf0cfa566a65c)) - 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)) - feat!: module & commonjs in stylelint ([e4aed31](https://github.com/ivuorinen/base-configs/commit/e4aed31ef984188923eaedf6d8cff8ab36ecf924))
* feat!: module & commonjs in stylelint ([e4aed31](https://github.com/ivuorinen/base-configs/commit/e4aed31ef984188923eaedf6d8cff8ab36ecf924)) - feat!: upgrade to eslint 9, update configs ([ad9ed82](https://github.com/ivuorinen/base-configs/commit/ad9ed820d606e7fe484b7b5f553b5dc13277f037))
* feat!: upgrade to eslint 9, update configs ([ad9ed82](https://github.com/ivuorinen/base-configs/commit/ad9ed820d606e7fe484b7b5f553b5dc13277f037))
### Bug Fixes ### Bug Fixes
* add {commitlint,semantic-release}-config ([332f994](https://github.com/ivuorinen/base-configs/commit/332f9942b2c05fa7477f048b282f7e6a75679c77)) - add {commitlint,semantic-release}-config ([332f994](https://github.com/ivuorinen/base-configs/commit/332f9942b2c05fa7477f048b282f7e6a75679c77))
* add an initial value to "reduce()" call ([#238](https://github.com/ivuorinen/base-configs/issues/238)) ([52372db](https://github.com/ivuorinen/base-configs/commit/52372dbe371bae56b44d79e2150b61200b071a1f)) - add an initial value to "reduce()" call ([#238](https://github.com/ivuorinen/base-configs/issues/238)) ([52372db](https://github.com/ivuorinen/base-configs/commit/52372dbe371bae56b44d79e2150b61200b071a1f))
* **base-configs:** convert config from ES module ([88dbe39](https://github.com/ivuorinen/base-configs/commit/88dbe395d1843384edf97eab4ee5c43810deae4f)) - **base-configs:** convert config from ES module ([88dbe39](https://github.com/ivuorinen/base-configs/commit/88dbe395d1843384edf97eab4ee5c43810deae4f))
* **ci:** add missing permission to publish workflow ([352774c](https://github.com/ivuorinen/base-configs/commit/352774c7091ad5fccc96e913ad004e25f6db2c8e)) - **ci:** add missing permission to publish workflow ([352774c](https://github.com/ivuorinen/base-configs/commit/352774c7091ad5fccc96e913ad004e25f6db2c8e))
* **ci:** pin browserslist-update-action@v2.5.0 ([c11bac5](https://github.com/ivuorinen/base-configs/commit/c11bac54e207d6531baefe1f2b9bd4b5e1c2b76e)) - **ci:** pin browserslist-update-action@v2.5.0 ([c11bac5](https://github.com/ivuorinen/base-configs/commit/c11bac54e207d6531baefe1f2b9bd4b5e1c2b76e))
* **ci:** stale workflow ([8e2e231](https://github.com/ivuorinen/base-configs/commit/8e2e2317ce85e73d289d305052419924b733c721)) - **ci:** stale workflow ([8e2e231](https://github.com/ivuorinen/base-configs/commit/8e2e2317ce85e73d289d305052419924b733c721))
* codeql analysis ([2a7f849](https://github.com/ivuorinen/base-configs/commit/2a7f8490bef23ce00f90b4d90dc5489111851f60)) - codeql analysis ([2a7f849](https://github.com/ivuorinen/base-configs/commit/2a7f8490bef23ce00f90b4d90dc5489111851f60))
* **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))
* **config:** add wrapper.mjs to included files ([ef5641f](https://github.com/ivuorinen/base-configs/commit/ef5641f13bc6a71e539174ae89d46e3fafa060c9)) - **config:** add wrapper.mjs to included files ([ef5641f](https://github.com/ivuorinen/base-configs/commit/ef5641f13bc6a71e539174ae89d46e3fafa060c9))
* **deps:** update @commitlint/cli to 19.4.0 ([#285](https://github.com/ivuorinen/base-configs/issues/285)) ([4080152](https://github.com/ivuorinen/base-configs/commit/4080152296ed9febc2c6dbf4cc41183a9ce319f8)) - **deps:** update @commitlint/cli to 19.4.0 ([#285](https://github.com/ivuorinen/base-configs/issues/285)) ([4080152](https://github.com/ivuorinen/base-configs/commit/4080152296ed9febc2c6dbf4cc41183a9ce319f8))
* **deps:** update browserslist to 4.23.2 ([#271](https://github.com/ivuorinen/base-configs/issues/271)) ([8593ea0](https://github.com/ivuorinen/base-configs/commit/8593ea0ea6898335a38fe2aa57d0d7457919eb35)) - **deps:** update browserslist to 4.23.2 ([#271](https://github.com/ivuorinen/base-configs/issues/271)) ([8593ea0](https://github.com/ivuorinen/base-configs/commit/8593ea0ea6898335a38fe2aa57d0d7457919eb35))
* **deps:** update browserslist to 4.23.3 ([#283](https://github.com/ivuorinen/base-configs/issues/283)) ([232225b](https://github.com/ivuorinen/base-configs/commit/232225b186c3a8cf2e0f4f0d50b4c198ebdacfee)) - **deps:** update browserslist to 4.23.3 ([#283](https://github.com/ivuorinen/base-configs/issues/283)) ([232225b](https://github.com/ivuorinen/base-configs/commit/232225b186c3a8cf2e0f4f0d50b4c198ebdacfee))
* **deps:** update commitlint monorepo ([#74](https://github.com/ivuorinen/base-configs/issues/74)) ([b5bed20](https://github.com/ivuorinen/base-configs/commit/b5bed202f31111e64892bae7be83e5dae6989804)) - **deps:** update commitlint monorepo ([#74](https://github.com/ivuorinen/base-configs/issues/74)) ([b5bed20](https://github.com/ivuorinen/base-configs/commit/b5bed202f31111e64892bae7be83e5dae6989804))
* **deps:** update commitlint monorepo to v17.6.1 ([#7](https://github.com/ivuorinen/base-configs/issues/7)) ([ae6da42](https://github.com/ivuorinen/base-configs/commit/ae6da424492a2a523f33c0bd5d8fd774549646fc)) - **deps:** update commitlint monorepo to v17.6.1 ([#7](https://github.com/ivuorinen/base-configs/issues/7)) ([ae6da42](https://github.com/ivuorinen/base-configs/commit/ae6da424492a2a523f33c0bd5d8fd774549646fc))
* **deps:** update commitlint monorepo to v17.8.0 ([#109](https://github.com/ivuorinen/base-configs/issues/109)) ([268ba28](https://github.com/ivuorinen/base-configs/commit/268ba2894bcec4619b3136c4f2e9b2b111056b06)) - **deps:** update commitlint monorepo to v17.8.0 ([#109](https://github.com/ivuorinen/base-configs/issues/109)) ([268ba28](https://github.com/ivuorinen/base-configs/commit/268ba2894bcec4619b3136c4f2e9b2b111056b06))
* **deps:** update commitlint monorepo to v18 ([#115](https://github.com/ivuorinen/base-configs/issues/115)) ([0a8c40f](https://github.com/ivuorinen/base-configs/commit/0a8c40f27d2a3848c58799c5172cdec2604d95d2)) - **deps:** update commitlint monorepo to v18 ([#115](https://github.com/ivuorinen/base-configs/issues/115)) ([0a8c40f](https://github.com/ivuorinen/base-configs/commit/0a8c40f27d2a3848c58799c5172cdec2604d95d2))
* **deps:** update commitlint monorepo to v18.1.0 ([#118](https://github.com/ivuorinen/base-configs/issues/118)) ([3cbb852](https://github.com/ivuorinen/base-configs/commit/3cbb85289a1599eed3d87927e1bd402520b4d74d)) - **deps:** update commitlint monorepo to v18.1.0 ([#118](https://github.com/ivuorinen/base-configs/issues/118)) ([3cbb852](https://github.com/ivuorinen/base-configs/commit/3cbb85289a1599eed3d87927e1bd402520b4d74d))
* **deps:** update commitlint monorepo to v18.4.0 ([#133](https://github.com/ivuorinen/base-configs/issues/133)) ([dc38a94](https://github.com/ivuorinen/base-configs/commit/dc38a94b97e655bb90bc620fe4dbe1c281f2c1d5)) - **deps:** update commitlint monorepo to v18.4.0 ([#133](https://github.com/ivuorinen/base-configs/issues/133)) ([dc38a94](https://github.com/ivuorinen/base-configs/commit/dc38a94b97e655bb90bc620fe4dbe1c281f2c1d5))
* **deps:** update commitlint monorepo to v18.5.0 ([#180](https://github.com/ivuorinen/base-configs/issues/180)) ([612cdc2](https://github.com/ivuorinen/base-configs/commit/612cdc26cd32cb3abfb6b9f74982aa4c4c744402)) - **deps:** update commitlint monorepo to v18.5.0 ([#180](https://github.com/ivuorinen/base-configs/issues/180)) ([612cdc2](https://github.com/ivuorinen/base-configs/commit/612cdc26cd32cb3abfb6b9f74982aa4c4c744402))
* **deps:** update commitlint monorepo to v18.6.0 ([#181](https://github.com/ivuorinen/base-configs/issues/181)) ([3292c31](https://github.com/ivuorinen/base-configs/commit/3292c31f299fee72bc7a1a3350e109a68b44fa3e)) - **deps:** update commitlint monorepo to v18.6.0 ([#181](https://github.com/ivuorinen/base-configs/issues/181)) ([3292c31](https://github.com/ivuorinen/base-configs/commit/3292c31f299fee72bc7a1a3350e109a68b44fa3e))
* **deps:** update commitlint monorepo to v19.1.0 ([#202](https://github.com/ivuorinen/base-configs/issues/202)) ([53929de](https://github.com/ivuorinen/base-configs/commit/53929deedfe95666bf9a31b80a87baed34f5d99c)) - **deps:** update commitlint monorepo to v19.1.0 ([#202](https://github.com/ivuorinen/base-configs/issues/202)) ([53929de](https://github.com/ivuorinen/base-configs/commit/53929deedfe95666bf9a31b80a87baed34f5d99c))
* **deps:** update commitlint to v18.4.3 ([#139](https://github.com/ivuorinen/base-configs/issues/139)) ([0b592d6](https://github.com/ivuorinen/base-configs/commit/0b592d68881e0d3d305b94d8a8bf5c2594271326)) - **deps:** update commitlint to v18.4.3 ([#139](https://github.com/ivuorinen/base-configs/issues/139)) ([0b592d6](https://github.com/ivuorinen/base-configs/commit/0b592d68881e0d3d305b94d8a8bf5c2594271326))
* **deps:** update dependencies ([4da5297](https://github.com/ivuorinen/base-configs/commit/4da529746e56f8fbbd7f64cd1c0dfd2cd523f18f)) - **deps:** update dependencies ([4da5297](https://github.com/ivuorinen/base-configs/commit/4da529746e56f8fbbd7f64cd1c0dfd2cd523f18f))
* **deps:** update dependencies ([7203d40](https://github.com/ivuorinen/base-configs/commit/7203d40f7ddcf1d5c84e2049bd4c23a837dd6eb6)) - **deps:** update dependencies ([7203d40](https://github.com/ivuorinen/base-configs/commit/7203d40f7ddcf1d5c84e2049bd4c23a837dd6eb6))
* **deps:** update dependency @commitlint/cli to v18.2.0 ([#119](https://github.com/ivuorinen/base-configs/issues/119)) ([1c2b5d6](https://github.com/ivuorinen/base-configs/commit/1c2b5d6faf5d0e78754392c28b157ac58afc73e9)) - **deps:** update dependency @commitlint/cli to v18.2.0 ([#119](https://github.com/ivuorinen/base-configs/issues/119)) ([1c2b5d6](https://github.com/ivuorinen/base-configs/commit/1c2b5d6faf5d0e78754392c28b157ac58afc73e9))
* **deps:** update dependency @commitlint/cli to v18.4.1 ([10bd9c0](https://github.com/ivuorinen/base-configs/commit/10bd9c035af70011441793248d23736d3b1a2e02)) - **deps:** update dependency @commitlint/cli to v18.4.1 ([10bd9c0](https://github.com/ivuorinen/base-configs/commit/10bd9c035af70011441793248d23736d3b1a2e02))
* **deps:** update dependency @commitlint/cli to v19.2.0 ([#205](https://github.com/ivuorinen/base-configs/issues/205)) ([b72a2b6](https://github.com/ivuorinen/base-configs/commit/b72a2b6e9312284798d4a6200816fd8bc47fa4c6)) - **deps:** update dependency @commitlint/cli to v19.2.0 ([#205](https://github.com/ivuorinen/base-configs/issues/205)) ([b72a2b6](https://github.com/ivuorinen/base-configs/commit/b72a2b6e9312284798d4a6200816fd8bc47fa4c6))
* **deps:** update dependency @commitlint/cli to v19.2.1 ([df99f1f](https://github.com/ivuorinen/base-configs/commit/df99f1fa2ee8183890606bdb55d084e9c727e1b8)) - **deps:** update dependency @commitlint/cli to v19.2.1 ([df99f1f](https://github.com/ivuorinen/base-configs/commit/df99f1fa2ee8183890606bdb55d084e9c727e1b8))
* **deps:** update dependency @commitlint/cli to v19.2.2 ([4438acd](https://github.com/ivuorinen/base-configs/commit/4438acdc5e0b87ee227da003d58742644b23f119)) - **deps:** update dependency @commitlint/cli to v19.2.2 ([4438acd](https://github.com/ivuorinen/base-configs/commit/4438acdc5e0b87ee227da003d58742644b23f119))
* **deps:** update dependency @commitlint/cli to v19.3.0 ([#230](https://github.com/ivuorinen/base-configs/issues/230)) ([a3bf58b](https://github.com/ivuorinen/base-configs/commit/a3bf58b31d55292ba691672324650b55f617db9a)) - **deps:** update dependency @commitlint/cli to v19.3.0 ([#230](https://github.com/ivuorinen/base-configs/issues/230)) ([a3bf58b](https://github.com/ivuorinen/base-configs/commit/a3bf58b31d55292ba691672324650b55f617db9a))
* **deps:** update dependency @commitlint/config-conventional to v18.6.2 ([4884192](https://github.com/ivuorinen/base-configs/commit/48841924537561baf101b2512ef7d41f79a46351)) - **deps:** update dependency @commitlint/config-conventional to v18.6.2 ([4884192](https://github.com/ivuorinen/base-configs/commit/48841924537561baf101b2512ef7d41f79a46351))
* **deps:** update dependency @commitlint/config-conventional to v19.2.2 ([#225](https://github.com/ivuorinen/base-configs/issues/225)) ([92ac187](https://github.com/ivuorinen/base-configs/commit/92ac187a83f4a6776fd00ca7c03d3f380944697b)) - **deps:** update dependency @commitlint/config-conventional to v19.2.2 ([#225](https://github.com/ivuorinen/base-configs/issues/225)) ([92ac187](https://github.com/ivuorinen/base-configs/commit/92ac187a83f4a6776fd00ca7c03d3f380944697b))
* **deps:** update dependency browserslist to v4.21.10 ([49089e4](https://github.com/ivuorinen/base-configs/commit/49089e46f8922b7c8c49a5930f2902255bd1a656)) - **deps:** update dependency browserslist to v4.21.10 ([49089e4](https://github.com/ivuorinen/base-configs/commit/49089e46f8922b7c8c49a5930f2902255bd1a656))
* **deps:** update dependency browserslist to v4.21.11 ([dc2d92f](https://github.com/ivuorinen/base-configs/commit/dc2d92f1e3dd243673a68d0d11ec4510fc74688c)) - **deps:** update dependency browserslist to v4.21.11 ([dc2d92f](https://github.com/ivuorinen/base-configs/commit/dc2d92f1e3dd243673a68d0d11ec4510fc74688c))
* **deps:** update dependency browserslist to v4.21.6 ([7ed5e2e](https://github.com/ivuorinen/base-configs/commit/7ed5e2ead41b51ef58598964191627491d4be9b6)) - **deps:** update dependency browserslist to v4.21.6 ([7ed5e2e](https://github.com/ivuorinen/base-configs/commit/7ed5e2ead41b51ef58598964191627491d4be9b6))
* **deps:** update dependency browserslist to v4.21.8 ([3f72210](https://github.com/ivuorinen/base-configs/commit/3f722107521164fd04e0e01ead45c7fc3fa1713a)) - **deps:** update dependency browserslist to v4.21.8 ([3f72210](https://github.com/ivuorinen/base-configs/commit/3f722107521164fd04e0e01ead45c7fc3fa1713a))
* **deps:** update dependency browserslist to v4.21.9 ([#43](https://github.com/ivuorinen/base-configs/issues/43)) ([235eef1](https://github.com/ivuorinen/base-configs/commit/235eef133ffb8717a4569534fe83a25c0c0581d3)) - **deps:** update dependency browserslist to v4.21.9 ([#43](https://github.com/ivuorinen/base-configs/issues/43)) ([235eef1](https://github.com/ivuorinen/base-configs/commit/235eef133ffb8717a4569534fe83a25c0c0581d3))
* **deps:** update dependency browserslist to v4.22.0 ([#102](https://github.com/ivuorinen/base-configs/issues/102)) ([57befef](https://github.com/ivuorinen/base-configs/commit/57befef7a7f15a602ef63b591e6acd606319d583)) - **deps:** update dependency browserslist to v4.22.0 ([#102](https://github.com/ivuorinen/base-configs/issues/102)) ([57befef](https://github.com/ivuorinen/base-configs/commit/57befef7a7f15a602ef63b591e6acd606319d583))
* **deps:** update dependency browserslist to v4.22.2 ([#142](https://github.com/ivuorinen/base-configs/issues/142)) ([990936c](https://github.com/ivuorinen/base-configs/commit/990936cc8bdf8f868d559e0283f1dc858081358b)) - **deps:** update dependency browserslist to v4.22.2 ([#142](https://github.com/ivuorinen/base-configs/issues/142)) ([990936c](https://github.com/ivuorinen/base-configs/commit/990936cc8bdf8f868d559e0283f1dc858081358b))
* **deps:** update dependency browserslist to v4.22.3 ([82ac478](https://github.com/ivuorinen/base-configs/commit/82ac478fe2e08d04685e6d33951461f14824d6f2)) - **deps:** update dependency browserslist to v4.22.3 ([82ac478](https://github.com/ivuorinen/base-configs/commit/82ac478fe2e08d04685e6d33951461f14824d6f2))
* **deps:** update dependency browserslist to v4.23.0 ([#192](https://github.com/ivuorinen/base-configs/issues/192)) ([a9436e4](https://github.com/ivuorinen/base-configs/commit/a9436e4b013e3e853c30e65f6a6ec25595e2ad6a)) - **deps:** update dependency browserslist to v4.23.0 ([#192](https://github.com/ivuorinen/base-configs/issues/192)) ([a9436e4](https://github.com/ivuorinen/base-configs/commit/a9436e4b013e3e853c30e65f6a6ec25595e2ad6a))
* **deps:** update dependency browserslist to v4.23.1 ([4b590e3](https://github.com/ivuorinen/base-configs/commit/4b590e3f27b218d3f9ca761c9c026909c5dfff0c)) - **deps:** update dependency browserslist to v4.23.1 ([4b590e3](https://github.com/ivuorinen/base-configs/commit/4b590e3f27b218d3f9ca761c9c026909c5dfff0c))
* **deps:** update dependency eslint to v8.40.0 ([#25](https://github.com/ivuorinen/base-configs/issues/25)) ([932edcf](https://github.com/ivuorinen/base-configs/commit/932edcfb2f88e93a62efc67eff144941d520a6a0)) - **deps:** update dependency eslint to v8.40.0 ([#25](https://github.com/ivuorinen/base-configs/issues/25)) ([932edcf](https://github.com/ivuorinen/base-configs/commit/932edcfb2f88e93a62efc67eff144941d520a6a0))
* **deps:** update dependency eslint to v8.41.0 ([#29](https://github.com/ivuorinen/base-configs/issues/29)) ([51a50d5](https://github.com/ivuorinen/base-configs/commit/51a50d51d484868e00382b638783c3cea4c86054)) - **deps:** update dependency eslint to v8.41.0 ([#29](https://github.com/ivuorinen/base-configs/issues/29)) ([51a50d5](https://github.com/ivuorinen/base-configs/commit/51a50d51d484868e00382b638783c3cea4c86054))
* **deps:** update dependency eslint to v8.42.0 ([#35](https://github.com/ivuorinen/base-configs/issues/35)) ([cb98f6e](https://github.com/ivuorinen/base-configs/commit/cb98f6e42378d42639317356810beee512da5c21)) - **deps:** update dependency eslint to v8.42.0 ([#35](https://github.com/ivuorinen/base-configs/issues/35)) ([cb98f6e](https://github.com/ivuorinen/base-configs/commit/cb98f6e42378d42639317356810beee512da5c21))
* **deps:** update dependency eslint to v8.43.0 ([#44](https://github.com/ivuorinen/base-configs/issues/44)) ([dc93d70](https://github.com/ivuorinen/base-configs/commit/dc93d70ec67d0e47ae5cf12f01b4fbb275405e00)) - **deps:** update dependency eslint to v8.43.0 ([#44](https://github.com/ivuorinen/base-configs/issues/44)) ([dc93d70](https://github.com/ivuorinen/base-configs/commit/dc93d70ec67d0e47ae5cf12f01b4fbb275405e00))
* **deps:** update dependency eslint to v8.44.0 ([#52](https://github.com/ivuorinen/base-configs/issues/52)) ([b4055f2](https://github.com/ivuorinen/base-configs/commit/b4055f21b245ac119dc8b960894a214073c3f41b)) - **deps:** update dependency eslint to v8.44.0 ([#52](https://github.com/ivuorinen/base-configs/issues/52)) ([b4055f2](https://github.com/ivuorinen/base-configs/commit/b4055f21b245ac119dc8b960894a214073c3f41b))
* **deps:** update dependency eslint to v8.45.0 ([#66](https://github.com/ivuorinen/base-configs/issues/66)) ([c175cd8](https://github.com/ivuorinen/base-configs/commit/c175cd85af6bb13b0edfc2bd39dd1291378e11a4)) - **deps:** update dependency eslint to v8.45.0 ([#66](https://github.com/ivuorinen/base-configs/issues/66)) ([c175cd8](https://github.com/ivuorinen/base-configs/commit/c175cd85af6bb13b0edfc2bd39dd1291378e11a4))
* **deps:** update dependency eslint to v8.47.0 ([#76](https://github.com/ivuorinen/base-configs/issues/76)) ([a826fdf](https://github.com/ivuorinen/base-configs/commit/a826fdf124684555c1fcc4214b71530ad51d94e2)) - **deps:** update dependency eslint to v8.47.0 ([#76](https://github.com/ivuorinen/base-configs/issues/76)) ([a826fdf](https://github.com/ivuorinen/base-configs/commit/a826fdf124684555c1fcc4214b71530ad51d94e2))
* **deps:** update dependency eslint to v8.48.0 ([#86](https://github.com/ivuorinen/base-configs/issues/86)) ([a18aa27](https://github.com/ivuorinen/base-configs/commit/a18aa279693ae2920e17499d14ce23515c339754)) - **deps:** update dependency eslint to v8.48.0 ([#86](https://github.com/ivuorinen/base-configs/issues/86)) ([a18aa27](https://github.com/ivuorinen/base-configs/commit/a18aa279693ae2920e17499d14ce23515c339754))
* **deps:** update dependency eslint to v8.49.0 ([#91](https://github.com/ivuorinen/base-configs/issues/91)) ([1ddcc9e](https://github.com/ivuorinen/base-configs/commit/1ddcc9eea6f96ead1afa85e3feb36ed79b4f0b55)) - **deps:** update dependency eslint to v8.49.0 ([#91](https://github.com/ivuorinen/base-configs/issues/91)) ([1ddcc9e](https://github.com/ivuorinen/base-configs/commit/1ddcc9eea6f96ead1afa85e3feb36ed79b4f0b55))
* **deps:** update dependency eslint to v8.50.0 ([#100](https://github.com/ivuorinen/base-configs/issues/100)) ([91e807f](https://github.com/ivuorinen/base-configs/commit/91e807f93abeadcf4fe27f014b00b7dcddbfb684)) - **deps:** update dependency eslint to v8.50.0 ([#100](https://github.com/ivuorinen/base-configs/issues/100)) ([91e807f](https://github.com/ivuorinen/base-configs/commit/91e807f93abeadcf4fe27f014b00b7dcddbfb684))
* **deps:** update dependency eslint to v8.51.0 ([#106](https://github.com/ivuorinen/base-configs/issues/106)) ([591bf2a](https://github.com/ivuorinen/base-configs/commit/591bf2aa52b88b091d85f226271848e7538b8c92)) - **deps:** update dependency eslint to v8.51.0 ([#106](https://github.com/ivuorinen/base-configs/issues/106)) ([591bf2a](https://github.com/ivuorinen/base-configs/commit/591bf2aa52b88b091d85f226271848e7538b8c92))
* **deps:** update dependency eslint to v8.54.0 ([#138](https://github.com/ivuorinen/base-configs/issues/138)) ([ab276d0](https://github.com/ivuorinen/base-configs/commit/ab276d0c8025ca3ecba46c8e59d74ab18daf2c4a)) - **deps:** update dependency eslint to v8.54.0 ([#138](https://github.com/ivuorinen/base-configs/issues/138)) ([ab276d0](https://github.com/ivuorinen/base-configs/commit/ab276d0c8025ca3ecba46c8e59d74ab18daf2c4a))
* **deps:** update dependency eslint to v8.55.0 ([#141](https://github.com/ivuorinen/base-configs/issues/141)) ([694b489](https://github.com/ivuorinen/base-configs/commit/694b4892e5c346d2e3f080896126b35a4a2c9de8)) - **deps:** update dependency eslint to v8.55.0 ([#141](https://github.com/ivuorinen/base-configs/issues/141)) ([694b489](https://github.com/ivuorinen/base-configs/commit/694b4892e5c346d2e3f080896126b35a4a2c9de8))
* **deps:** update dependency eslint to v8.56.0 ([#158](https://github.com/ivuorinen/base-configs/issues/158)) ([7d74451](https://github.com/ivuorinen/base-configs/commit/7d744512fb0db2151a44e6fbe0f612a6bf650411)) - **deps:** update dependency eslint to v8.56.0 ([#158](https://github.com/ivuorinen/base-configs/issues/158)) ([7d74451](https://github.com/ivuorinen/base-configs/commit/7d744512fb0db2151a44e6fbe0f612a6bf650411))
* **deps:** update dependency eslint to v8.57.0 ([#197](https://github.com/ivuorinen/base-configs/issues/197)) ([c06e3b6](https://github.com/ivuorinen/base-configs/commit/c06e3b6ddce9385fb6dd1a1937419dfcf098d7f1)) - **deps:** update dependency eslint to v8.57.0 ([#197](https://github.com/ivuorinen/base-configs/issues/197)) ([c06e3b6](https://github.com/ivuorinen/base-configs/commit/c06e3b6ddce9385fb6dd1a1937419dfcf098d7f1))
* **deps:** update dependency eslint to v9.1.1 ([f947122](https://github.com/ivuorinen/base-configs/commit/f94712248ee9afeac4217d830e3b3776f597f61d)) - **deps:** update dependency eslint to v9.1.1 ([f947122](https://github.com/ivuorinen/base-configs/commit/f94712248ee9afeac4217d830e3b3776f597f61d))
* **deps:** update dependency eslint to v9.3.0 ([#251](https://github.com/ivuorinen/base-configs/issues/251)) ([44088ba](https://github.com/ivuorinen/base-configs/commit/44088ba99c91ce81f52eddd7b7e09604fae55c50)) - **deps:** update dependency eslint to v9.3.0 ([#251](https://github.com/ivuorinen/base-configs/issues/251)) ([44088ba](https://github.com/ivuorinen/base-configs/commit/44088ba99c91ce81f52eddd7b7e09604fae55c50))
* **deps:** update dependency eslint to v9.4.0 ([#256](https://github.com/ivuorinen/base-configs/issues/256)) ([59fa4e7](https://github.com/ivuorinen/base-configs/commit/59fa4e7d44aa40bbd094b1791a109dc68629f461)) - **deps:** update dependency eslint to v9.4.0 ([#256](https://github.com/ivuorinen/base-configs/issues/256)) ([59fa4e7](https://github.com/ivuorinen/base-configs/commit/59fa4e7d44aa40bbd094b1791a109dc68629f461))
* **deps:** update dependency eslint-config-standard to v17.1.0 ([#33](https://github.com/ivuorinen/base-configs/issues/33)) ([283f360](https://github.com/ivuorinen/base-configs/commit/283f3604f16c57e07aecb56c0a025d6d67574dba)) - **deps:** update dependency eslint-config-standard to v17.1.0 ([#33](https://github.com/ivuorinen/base-configs/issues/33)) ([283f360](https://github.com/ivuorinen/base-configs/commit/283f3604f16c57e07aecb56c0a025d6d67574dba))
* **deps:** update dependency eslint-plugin-import to v2.28.1 ([d2cbc1c](https://github.com/ivuorinen/base-configs/commit/d2cbc1c2185746aae2d2b3ec4722ef1e921170f6)) - **deps:** update dependency eslint-plugin-import to v2.28.1 ([d2cbc1c](https://github.com/ivuorinen/base-configs/commit/d2cbc1c2185746aae2d2b3ec4722ef1e921170f6))
* **deps:** update dependency eslint-plugin-import to v2.29.0 ([#117](https://github.com/ivuorinen/base-configs/issues/117)) ([f1507a2](https://github.com/ivuorinen/base-configs/commit/f1507a230fa41af9a48061848a3c92a667313193)) - **deps:** update dependency eslint-plugin-import to v2.29.0 ([#117](https://github.com/ivuorinen/base-configs/issues/117)) ([f1507a2](https://github.com/ivuorinen/base-configs/commit/f1507a230fa41af9a48061848a3c92a667313193))
* **deps:** update dependency eslint-plugin-import to v2.29.1 ([6e63c7c](https://github.com/ivuorinen/base-configs/commit/6e63c7c5b2ee1f184cb710d0b48c67c0d1aac37d)) - **deps:** update dependency eslint-plugin-import to v2.29.1 ([6e63c7c](https://github.com/ivuorinen/base-configs/commit/6e63c7c5b2ee1f184cb710d0b48c67c0d1aac37d))
* **deps:** update dependency eslint-plugin-jest to v27.2.2 ([8b89329](https://github.com/ivuorinen/base-configs/commit/8b89329e5cb20d05987bf9f30eecb96d7538a1b2)) - **deps:** update dependency eslint-plugin-jest to v27.2.2 ([8b89329](https://github.com/ivuorinen/base-configs/commit/8b89329e5cb20d05987bf9f30eecb96d7538a1b2))
* **deps:** update dependency eslint-plugin-jest to v27.2.3 ([2ba939b](https://github.com/ivuorinen/base-configs/commit/2ba939b2a6395bab0f2d5707abe24c4daa6c3023)) - **deps:** update dependency eslint-plugin-jest to v27.2.3 ([2ba939b](https://github.com/ivuorinen/base-configs/commit/2ba939b2a6395bab0f2d5707abe24c4daa6c3023))
* **deps:** update dependency eslint-plugin-jest to v27.4.0 ([#95](https://github.com/ivuorinen/base-configs/issues/95)) ([f4579cc](https://github.com/ivuorinen/base-configs/commit/f4579cceb5ebd03aaefb47b8b53a2ca3ee55d579)) - **deps:** update dependency eslint-plugin-jest to v27.4.0 ([#95](https://github.com/ivuorinen/base-configs/issues/95)) ([f4579cc](https://github.com/ivuorinen/base-configs/commit/f4579cceb5ebd03aaefb47b8b53a2ca3ee55d579))
* **deps:** update dependency eslint-plugin-jest to v27.4.2 ([5cea814](https://github.com/ivuorinen/base-configs/commit/5cea8144d75fe8ed03610c6ac669f86004554c77)) - **deps:** update dependency eslint-plugin-jest to v27.4.2 ([5cea814](https://github.com/ivuorinen/base-configs/commit/5cea8144d75fe8ed03610c6ac669f86004554c77))
* **deps:** update dependency eslint-plugin-jest to v27.6.0 ([#120](https://github.com/ivuorinen/base-configs/issues/120)) ([106f755](https://github.com/ivuorinen/base-configs/commit/106f7555e31f2b98499fe36cf5b8dd50516e53d5)) - **deps:** update dependency eslint-plugin-jest to v27.6.0 ([#120](https://github.com/ivuorinen/base-configs/issues/120)) ([106f755](https://github.com/ivuorinen/base-configs/commit/106f7555e31f2b98499fe36cf5b8dd50516e53d5))
* **deps:** update dependency eslint-plugin-jest to v27.6.1 ([8a3281b](https://github.com/ivuorinen/base-configs/commit/8a3281b03c145db4987413548974bd9fb146a800)) - **deps:** update dependency eslint-plugin-jest to v27.6.1 ([8a3281b](https://github.com/ivuorinen/base-configs/commit/8a3281b03c145db4987413548974bd9fb146a800))
* **deps:** update dependency eslint-plugin-jest to v27.6.2 ([87bf28c](https://github.com/ivuorinen/base-configs/commit/87bf28c48c7313197f7f309fd6954e84ce41c7dc)) - **deps:** update dependency eslint-plugin-jest to v27.6.2 ([87bf28c](https://github.com/ivuorinen/base-configs/commit/87bf28c48c7313197f7f309fd6954e84ce41c7dc))
* **deps:** update dependency eslint-plugin-jest to v27.6.3 ([707d60a](https://github.com/ivuorinen/base-configs/commit/707d60a2140f584fe0aef3f9235554af7bf05bbc)) - **deps:** update dependency eslint-plugin-jest to v27.6.3 ([707d60a](https://github.com/ivuorinen/base-configs/commit/707d60a2140f584fe0aef3f9235554af7bf05bbc))
* **deps:** update dependency eslint-plugin-jest to v27.9.0 ([#193](https://github.com/ivuorinen/base-configs/issues/193)) ([3640d26](https://github.com/ivuorinen/base-configs/commit/3640d264250a7340398a1299f2650198922c8aaf)) - **deps:** update dependency eslint-plugin-jest to v27.9.0 ([#193](https://github.com/ivuorinen/base-configs/issues/193)) ([3640d26](https://github.com/ivuorinen/base-configs/commit/3640d264250a7340398a1299f2650198922c8aaf))
* **deps:** update dependency eslint-plugin-jest to v28 ([#220](https://github.com/ivuorinen/base-configs/issues/220)) ([b01dc7c](https://github.com/ivuorinen/base-configs/commit/b01dc7c19d0e7a7b0c24ef93df716a72cad25226)) - **deps:** update dependency eslint-plugin-jest to v28 ([#220](https://github.com/ivuorinen/base-configs/issues/220)) ([b01dc7c](https://github.com/ivuorinen/base-configs/commit/b01dc7c19d0e7a7b0c24ef93df716a72cad25226))
* **deps:** update dependency eslint-plugin-jest to v28.3.0 ([#233](https://github.com/ivuorinen/base-configs/issues/233)) ([8d50271](https://github.com/ivuorinen/base-configs/commit/8d5027144dccd573010432373ad4c7f085d6f53a)) - **deps:** update dependency eslint-plugin-jest to v28.3.0 ([#233](https://github.com/ivuorinen/base-configs/issues/233)) ([8d50271](https://github.com/ivuorinen/base-configs/commit/8d5027144dccd573010432373ad4c7f085d6f53a))
* **deps:** update dependency eslint-plugin-jest to v28.4.0 ([#239](https://github.com/ivuorinen/base-configs/issues/239)) ([4cee9fb](https://github.com/ivuorinen/base-configs/commit/4cee9fb75ac1eefc240c23c79ff78ff6086942ad)) - **deps:** update dependency eslint-plugin-jest to v28.4.0 ([#239](https://github.com/ivuorinen/base-configs/issues/239)) ([4cee9fb](https://github.com/ivuorinen/base-configs/commit/4cee9fb75ac1eefc240c23c79ff78ff6086942ad))
* **deps:** update dependency eslint-plugin-n to v16 ([#27](https://github.com/ivuorinen/base-configs/issues/27)) ([63c0185](https://github.com/ivuorinen/base-configs/commit/63c0185d842592105be80d47dda631f9806f214b)) - **deps:** update dependency eslint-plugin-n to v16 ([#27](https://github.com/ivuorinen/base-configs/issues/27)) ([63c0185](https://github.com/ivuorinen/base-configs/commit/63c0185d842592105be80d47dda631f9806f214b))
* **deps:** update dependency eslint-plugin-n to v16.0.1 ([d88bcac](https://github.com/ivuorinen/base-configs/commit/d88bcacfbd8a69d6991c7749784184987da103c8)) - **deps:** update dependency eslint-plugin-n to v16.0.1 ([d88bcac](https://github.com/ivuorinen/base-configs/commit/d88bcacfbd8a69d6991c7749784184987da103c8))
* **deps:** update dependency eslint-plugin-n to v16.0.2 ([#82](https://github.com/ivuorinen/base-configs/issues/82)) ([dc213bd](https://github.com/ivuorinen/base-configs/commit/dc213bd680576267b3307aec2a54f012c6ab5889)) - **deps:** update dependency eslint-plugin-n to v16.0.2 ([#82](https://github.com/ivuorinen/base-configs/issues/82)) ([dc213bd](https://github.com/ivuorinen/base-configs/commit/dc213bd680576267b3307aec2a54f012c6ab5889))
* **deps:** update dependency eslint-plugin-n to v16.1.0 ([#92](https://github.com/ivuorinen/base-configs/issues/92)) ([7d386f6](https://github.com/ivuorinen/base-configs/commit/7d386f64c08aad1c541520d58e65d75dd503541b)) - **deps:** update dependency eslint-plugin-n to v16.1.0 ([#92](https://github.com/ivuorinen/base-configs/issues/92)) ([7d386f6](https://github.com/ivuorinen/base-configs/commit/7d386f64c08aad1c541520d58e65d75dd503541b))
* **deps:** update dependency eslint-plugin-n to v16.2.0 ([#107](https://github.com/ivuorinen/base-configs/issues/107)) ([39d50e5](https://github.com/ivuorinen/base-configs/commit/39d50e551c8c94e4a5e220035a93d41aa32ae443)) - **deps:** update dependency eslint-plugin-n to v16.2.0 ([#107](https://github.com/ivuorinen/base-configs/issues/107)) ([39d50e5](https://github.com/ivuorinen/base-configs/commit/39d50e551c8c94e4a5e220035a93d41aa32ae443))
* **deps:** update dependency eslint-plugin-n to v16.3.0 ([#131](https://github.com/ivuorinen/base-configs/issues/131)) ([739bd74](https://github.com/ivuorinen/base-configs/commit/739bd743aad24b5cfb732b334700518bb4bd8b19)) - **deps:** update dependency eslint-plugin-n to v16.3.0 ([#131](https://github.com/ivuorinen/base-configs/issues/131)) ([739bd74](https://github.com/ivuorinen/base-configs/commit/739bd743aad24b5cfb732b334700518bb4bd8b19))
* **deps:** update dependency eslint-plugin-n to v16.3.1 ([e967616](https://github.com/ivuorinen/base-configs/commit/e9676169d088490dbc421fcaac849eec70d21eed)) - **deps:** update dependency eslint-plugin-n to v16.3.1 ([e967616](https://github.com/ivuorinen/base-configs/commit/e9676169d088490dbc421fcaac849eec70d21eed))
* **deps:** update dependency eslint-plugin-n to v16.4.0 ([#151](https://github.com/ivuorinen/base-configs/issues/151)) ([53966d5](https://github.com/ivuorinen/base-configs/commit/53966d5649325409219a5afd30104c602eff98dd)) - **deps:** update dependency eslint-plugin-n to v16.4.0 ([#151](https://github.com/ivuorinen/base-configs/issues/151)) ([53966d5](https://github.com/ivuorinen/base-configs/commit/53966d5649325409219a5afd30104c602eff98dd))
* **deps:** update dependency eslint-plugin-n to v16.5.0 ([#159](https://github.com/ivuorinen/base-configs/issues/159)) ([49f4815](https://github.com/ivuorinen/base-configs/commit/49f4815073398c125161871753fad4025e2875e0)) - **deps:** update dependency eslint-plugin-n to v16.5.0 ([#159](https://github.com/ivuorinen/base-configs/issues/159)) ([49f4815](https://github.com/ivuorinen/base-configs/commit/49f4815073398c125161871753fad4025e2875e0))
* **deps:** update dependency eslint-plugin-n to v16.6.0 ([#163](https://github.com/ivuorinen/base-configs/issues/163)) ([a88b1a8](https://github.com/ivuorinen/base-configs/commit/a88b1a8452aa3d57f901159153406909d74ec5e7)) - **deps:** update dependency eslint-plugin-n to v16.6.0 ([#163](https://github.com/ivuorinen/base-configs/issues/163)) ([a88b1a8](https://github.com/ivuorinen/base-configs/commit/a88b1a8452aa3d57f901159153406909d74ec5e7))
* **deps:** update dependency eslint-plugin-n to v16.6.1 ([0004edf](https://github.com/ivuorinen/base-configs/commit/0004edf5cfde46f9e0eb82bdd3953a34e799d06a)) - **deps:** update dependency eslint-plugin-n to v16.6.1 ([0004edf](https://github.com/ivuorinen/base-configs/commit/0004edf5cfde46f9e0eb82bdd3953a34e799d06a))
* **deps:** update dependency eslint-plugin-n to v16.6.2 ([2c7b3eb](https://github.com/ivuorinen/base-configs/commit/2c7b3ebc0a83ce1815316e065200c4f9cca1138f)) - **deps:** update dependency eslint-plugin-n to v16.6.2 ([2c7b3eb](https://github.com/ivuorinen/base-configs/commit/2c7b3ebc0a83ce1815316e065200c4f9cca1138f))
* **deps:** update dependency eslint-plugin-n to v17 ([#221](https://github.com/ivuorinen/base-configs/issues/221)) ([28c385e](https://github.com/ivuorinen/base-configs/commit/28c385ecbdb0f806820d75c94f32a2ce321b9687)) - **deps:** update dependency eslint-plugin-n to v17 ([#221](https://github.com/ivuorinen/base-configs/issues/221)) ([28c385e](https://github.com/ivuorinen/base-configs/commit/28c385ecbdb0f806820d75c94f32a2ce321b9687))
* **deps:** update dependency eslint-plugin-n to v17.2.0 ([#223](https://github.com/ivuorinen/base-configs/issues/223)) ([14ea3c1](https://github.com/ivuorinen/base-configs/commit/14ea3c1250fd8c3caa5018d11ffa4ee2dbe8515c)) - **deps:** update dependency eslint-plugin-n to v17.2.0 ([#223](https://github.com/ivuorinen/base-configs/issues/223)) ([14ea3c1](https://github.com/ivuorinen/base-configs/commit/14ea3c1250fd8c3caa5018d11ffa4ee2dbe8515c))
* **deps:** update dependency eslint-plugin-n to v17.2.1 ([50fa8cf](https://github.com/ivuorinen/base-configs/commit/50fa8cf2d307fd71bbf321c0f0323572c3d7bbf3)) - **deps:** update dependency eslint-plugin-n to v17.2.1 ([50fa8cf](https://github.com/ivuorinen/base-configs/commit/50fa8cf2d307fd71bbf321c0f0323572c3d7bbf3))
* **deps:** update dependency eslint-plugin-n to v17.3.1 ([#232](https://github.com/ivuorinen/base-configs/issues/232)) ([d1dbe8c](https://github.com/ivuorinen/base-configs/commit/d1dbe8cd9c79784c8b8575fa34244a0c29ca294b)) - **deps:** update dependency eslint-plugin-n to v17.3.1 ([#232](https://github.com/ivuorinen/base-configs/issues/232)) ([d1dbe8c](https://github.com/ivuorinen/base-configs/commit/d1dbe8cd9c79784c8b8575fa34244a0c29ca294b))
* **deps:** update dependency eslint-plugin-n to v17.4.0 ([#235](https://github.com/ivuorinen/base-configs/issues/235)) ([cbde501](https://github.com/ivuorinen/base-configs/commit/cbde5017bd907074ef2168f3d3d9ddde808dcba9)) - **deps:** update dependency eslint-plugin-n to v17.4.0 ([#235](https://github.com/ivuorinen/base-configs/issues/235)) ([cbde501](https://github.com/ivuorinen/base-configs/commit/cbde5017bd907074ef2168f3d3d9ddde808dcba9))
* **deps:** update dependency eslint-plugin-n to v17.5.1 ([#245](https://github.com/ivuorinen/base-configs/issues/245)) ([5730a87](https://github.com/ivuorinen/base-configs/commit/5730a872ff5952b1f62b778c4466200e393e604a)) - **deps:** update dependency eslint-plugin-n to v17.5.1 ([#245](https://github.com/ivuorinen/base-configs/issues/245)) ([5730a87](https://github.com/ivuorinen/base-configs/commit/5730a872ff5952b1f62b778c4466200e393e604a))
* **deps:** update dependency eslint-plugin-n to v17.6.0 ([#246](https://github.com/ivuorinen/base-configs/issues/246)) ([14b7307](https://github.com/ivuorinen/base-configs/commit/14b7307cdc57c651391d3bbd724bb5c91d3ad4ee)) - **deps:** update dependency eslint-plugin-n to v17.6.0 ([#246](https://github.com/ivuorinen/base-configs/issues/246)) ([14b7307](https://github.com/ivuorinen/base-configs/commit/14b7307cdc57c651391d3bbd724bb5c91d3ad4ee))
* **deps:** update dependency eslint-plugin-n to v17.7.0 ([#250](https://github.com/ivuorinen/base-configs/issues/250)) ([0d9853a](https://github.com/ivuorinen/base-configs/commit/0d9853a556ab9954d666a5750c0b3ac88e3560e6)) - **deps:** update dependency eslint-plugin-n to v17.7.0 ([#250](https://github.com/ivuorinen/base-configs/issues/250)) ([0d9853a](https://github.com/ivuorinen/base-configs/commit/0d9853a556ab9954d666a5750c0b3ac88e3560e6))
* **deps:** update dependency eslint-plugin-promise to v6.2.0 ([#254](https://github.com/ivuorinen/base-configs/issues/254)) ([d9b6957](https://github.com/ivuorinen/base-configs/commit/d9b695774d642582336ec3d12040bab737ac0c31)) - **deps:** update dependency eslint-plugin-promise to v6.2.0 ([#254](https://github.com/ivuorinen/base-configs/issues/254)) ([d9b6957](https://github.com/ivuorinen/base-configs/commit/d9b695774d642582336ec3d12040bab737ac0c31))
* **deps:** update dependency eslint-plugin-sonarjs to v0.21.0 ([#83](https://github.com/ivuorinen/base-configs/issues/83)) ([5c0fbcb](https://github.com/ivuorinen/base-configs/commit/5c0fbcb03bb59833a3a24b527cadbb048382ddb3)) - **deps:** update dependency eslint-plugin-sonarjs to v0.21.0 ([#83](https://github.com/ivuorinen/base-configs/issues/83)) ([5c0fbcb](https://github.com/ivuorinen/base-configs/commit/5c0fbcb03bb59833a3a24b527cadbb048382ddb3))
* **deps:** update dependency eslint-plugin-sonarjs to v0.22.0 ([13e9457](https://github.com/ivuorinen/base-configs/commit/13e945747fe7a69c7d3bcd3151d38415656b5f93)) - **deps:** update dependency eslint-plugin-sonarjs to v0.22.0 ([13e9457](https://github.com/ivuorinen/base-configs/commit/13e945747fe7a69c7d3bcd3151d38415656b5f93))
* **deps:** update dependency eslint-plugin-sonarjs to v0.25.0 ([#215](https://github.com/ivuorinen/base-configs/issues/215)) ([21fddab](https://github.com/ivuorinen/base-configs/commit/21fddabb15068ec11f16ecc34097a9c6ac3f9e95)) - **deps:** update dependency eslint-plugin-sonarjs to v0.25.0 ([#215](https://github.com/ivuorinen/base-configs/issues/215)) ([21fddab](https://github.com/ivuorinen/base-configs/commit/21fddabb15068ec11f16ecc34097a9c6ac3f9e95))
* **deps:** update dependency eslint-plugin-sonarjs to v0.25.1 ([#216](https://github.com/ivuorinen/base-configs/issues/216)) ([8039493](https://github.com/ivuorinen/base-configs/commit/803949390e5057680c0816937d3f43bb7a71ced1)) - **deps:** update dependency eslint-plugin-sonarjs to v0.25.1 ([#216](https://github.com/ivuorinen/base-configs/issues/216)) ([8039493](https://github.com/ivuorinen/base-configs/commit/803949390e5057680c0816937d3f43bb7a71ced1))
* **deps:** update dependency eslint-plugin-sonarjs to v1 ([#242](https://github.com/ivuorinen/base-configs/issues/242)) ([8419ce8](https://github.com/ivuorinen/base-configs/commit/8419ce8c64f2d7c533267c75ecd1186576738deb)) - **deps:** update dependency eslint-plugin-sonarjs to v1 ([#242](https://github.com/ivuorinen/base-configs/issues/242)) ([8419ce8](https://github.com/ivuorinen/base-configs/commit/8419ce8c64f2d7c533267c75ecd1186576738deb))
* **deps:** update dependency eslint-plugin-sonarjs to v1.0.3 ([5ea3c41](https://github.com/ivuorinen/base-configs/commit/5ea3c411984896554a54e8690a6a2efa9e3d7097)) - **deps:** update dependency eslint-plugin-sonarjs to v1.0.3 ([5ea3c41](https://github.com/ivuorinen/base-configs/commit/5ea3c411984896554a54e8690a6a2efa9e3d7097))
* **deps:** update dependency markdownlint-cli to v0.34.0 ([#9](https://github.com/ivuorinen/base-configs/issues/9)) ([308b444](https://github.com/ivuorinen/base-configs/commit/308b4445c8d5ab6a05a34c48d64f56b195e8c76d)) - **deps:** update dependency markdownlint-cli to v0.34.0 ([#9](https://github.com/ivuorinen/base-configs/issues/9)) ([308b444](https://github.com/ivuorinen/base-configs/commit/308b4445c8d5ab6a05a34c48d64f56b195e8c76d))
* **deps:** update dependency markdownlint-cli to v0.35.0 ([#45](https://github.com/ivuorinen/base-configs/issues/45)) ([e7f5fc5](https://github.com/ivuorinen/base-configs/commit/e7f5fc5ce0a3ea73d3c395a2667b53a57d21e205)) - **deps:** update dependency markdownlint-cli to v0.35.0 ([#45](https://github.com/ivuorinen/base-configs/issues/45)) ([e7f5fc5](https://github.com/ivuorinen/base-configs/commit/e7f5fc5ce0a3ea73d3c395a2667b53a57d21e205))
* **deps:** update dependency markdownlint-cli to v0.36.0 ([#88](https://github.com/ivuorinen/base-configs/issues/88)) ([8ea8e15](https://github.com/ivuorinen/base-configs/commit/8ea8e1501d8e4dd39df144999e4cee9076117822)) - **deps:** update dependency markdownlint-cli to v0.36.0 ([#88](https://github.com/ivuorinen/base-configs/issues/88)) ([8ea8e15](https://github.com/ivuorinen/base-configs/commit/8ea8e1501d8e4dd39df144999e4cee9076117822))
* **deps:** update dependency markdownlint-cli to v0.37.0 ([#101](https://github.com/ivuorinen/base-configs/issues/101)) ([615ae83](https://github.com/ivuorinen/base-configs/commit/615ae835286fbdf173e1b61e9df2a2eb75908374)) - **deps:** update dependency markdownlint-cli to v0.37.0 ([#101](https://github.com/ivuorinen/base-configs/issues/101)) ([615ae83](https://github.com/ivuorinen/base-configs/commit/615ae835286fbdf173e1b61e9df2a2eb75908374))
* **deps:** update dependency markdownlint-cli to v0.38.0 ([#149](https://github.com/ivuorinen/base-configs/issues/149)) ([12d1639](https://github.com/ivuorinen/base-configs/commit/12d1639290f8e81b03a4a712e41ab8334b4fadfc)) - **deps:** update dependency markdownlint-cli to v0.38.0 ([#149](https://github.com/ivuorinen/base-configs/issues/149)) ([12d1639](https://github.com/ivuorinen/base-configs/commit/12d1639290f8e81b03a4a712e41ab8334b4fadfc))
* **deps:** update dependency markdownlint-cli to v0.39.0 ([#183](https://github.com/ivuorinen/base-configs/issues/183)) ([50d4743](https://github.com/ivuorinen/base-configs/commit/50d4743f3bb7eb1458da6f67aafd3e409adf329a)) - **deps:** update dependency markdownlint-cli to v0.39.0 ([#183](https://github.com/ivuorinen/base-configs/issues/183)) ([50d4743](https://github.com/ivuorinen/base-configs/commit/50d4743f3bb7eb1458da6f67aafd3e409adf329a))
* **deps:** update dependency markdownlint-cli to v0.40.0 ([#236](https://github.com/ivuorinen/base-configs/issues/236)) ([3776f3b](https://github.com/ivuorinen/base-configs/commit/3776f3b223e6ad5d3809490cbd9d17075aaa2838)) - **deps:** update dependency markdownlint-cli to v0.40.0 ([#236](https://github.com/ivuorinen/base-configs/issues/236)) ([3776f3b](https://github.com/ivuorinen/base-configs/commit/3776f3b223e6ad5d3809490cbd9d17075aaa2838))
* **deps:** update dependency markdownlint-cli to v0.41.0 ([#253](https://github.com/ivuorinen/base-configs/issues/253)) ([e520dd1](https://github.com/ivuorinen/base-configs/commit/e520dd18fa126d773068d606a8b409d3fb5b5b00)) - **deps:** update dependency markdownlint-cli to v0.41.0 ([#253](https://github.com/ivuorinen/base-configs/issues/253)) ([e520dd1](https://github.com/ivuorinen/base-configs/commit/e520dd18fa126d773068d606a8b409d3fb5b5b00))
* **deps:** update dependency prettier to v3 ([#58](https://github.com/ivuorinen/base-configs/issues/58)) ([15e815a](https://github.com/ivuorinen/base-configs/commit/15e815a53d46bb369cb2d7c0eb7b54474245afee)) - **deps:** update dependency prettier to v3 ([#58](https://github.com/ivuorinen/base-configs/issues/58)) ([15e815a](https://github.com/ivuorinen/base-configs/commit/15e815a53d46bb369cb2d7c0eb7b54474245afee))
* **deps:** update dependency prettier to v3.1.0 ([#135](https://github.com/ivuorinen/base-configs/issues/135)) ([4ecaa73](https://github.com/ivuorinen/base-configs/commit/4ecaa73be86a7b7f98b78ffddf3fdf9316680ae2)) - **deps:** update dependency prettier to v3.1.0 ([#135](https://github.com/ivuorinen/base-configs/issues/135)) ([4ecaa73](https://github.com/ivuorinen/base-configs/commit/4ecaa73be86a7b7f98b78ffddf3fdf9316680ae2))
* **deps:** update dependency prettier to v3.2.1 ([#172](https://github.com/ivuorinen/base-configs/issues/172)) ([178b77f](https://github.com/ivuorinen/base-configs/commit/178b77f0076aa13b5a19b9a382c33d19b2db5fa9)) - **deps:** update dependency prettier to v3.2.1 ([#172](https://github.com/ivuorinen/base-configs/issues/172)) ([178b77f](https://github.com/ivuorinen/base-configs/commit/178b77f0076aa13b5a19b9a382c33d19b2db5fa9))
* **deps:** update dependency prettier to v3.2.2 ([6d7f865](https://github.com/ivuorinen/base-configs/commit/6d7f865bbbd4e7b03c0ab4f1904907c84dc632c6)) - **deps:** update dependency prettier to v3.2.2 ([6d7f865](https://github.com/ivuorinen/base-configs/commit/6d7f865bbbd4e7b03c0ab4f1904907c84dc632c6))
* **deps:** update dependency prettier to v3.2.3 ([4393ed7](https://github.com/ivuorinen/base-configs/commit/4393ed7c99515b1c27f76843b3af968be0a9d6a8)) - **deps:** update dependency prettier to v3.2.3 ([4393ed7](https://github.com/ivuorinen/base-configs/commit/4393ed7c99515b1c27f76843b3af968be0a9d6a8))
* **deps:** update dependency prettier to v3.2.4 ([faadbc6](https://github.com/ivuorinen/base-configs/commit/faadbc633a04f22999352e9f0e26a0acc65f0ff7)) - **deps:** update dependency prettier to v3.2.4 ([faadbc6](https://github.com/ivuorinen/base-configs/commit/faadbc633a04f22999352e9f0e26a0acc65f0ff7))
* **deps:** update dependency prettier to v3.3.0 ([#258](https://github.com/ivuorinen/base-configs/issues/258)) ([e7e39f9](https://github.com/ivuorinen/base-configs/commit/e7e39f9e3140ea574340ac66a777f3cd49fbf4b4)) - **deps:** update dependency prettier to v3.3.0 ([#258](https://github.com/ivuorinen/base-configs/issues/258)) ([e7e39f9](https://github.com/ivuorinen/base-configs/commit/e7e39f9e3140ea574340ac66a777f3cd49fbf4b4))
* **deps:** update dependency prettier to v3.3.2 ([62ff793](https://github.com/ivuorinen/base-configs/commit/62ff7930de55c29e08975faaed1b22df8c85ba44)) - **deps:** update dependency prettier to v3.3.2 ([62ff793](https://github.com/ivuorinen/base-configs/commit/62ff7930de55c29e08975faaed1b22df8c85ba44))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **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))
* **deps:** update dependency stylelint to v15 ([#15](https://github.com/ivuorinen/base-configs/issues/15)) ([478ca5e](https://github.com/ivuorinen/base-configs/commit/478ca5e81c9b411eff3d6fac06c7d8e8ee41db6a)) - **deps:** update dependency stylelint to v15 ([#15](https://github.com/ivuorinen/base-configs/issues/15)) ([478ca5e](https://github.com/ivuorinen/base-configs/commit/478ca5e81c9b411eff3d6fac06c7d8e8ee41db6a))
* **deps:** update dependency stylelint to v15.10.0 ([#55](https://github.com/ivuorinen/base-configs/issues/55)) ([6be8eb5](https://github.com/ivuorinen/base-configs/commit/6be8eb5e080c6f486d9b5fe984d235fdfc5347c4)) - **deps:** update dependency stylelint to v15.10.0 ([#55](https://github.com/ivuorinen/base-configs/issues/55)) ([6be8eb5](https://github.com/ivuorinen/base-configs/commit/6be8eb5e080c6f486d9b5fe984d235fdfc5347c4))
* **deps:** update dependency stylelint to v15.10.2 ([e3e5706](https://github.com/ivuorinen/base-configs/commit/e3e5706186ac27e683e64bf31c8b12f858d47ce1)) - **deps:** update dependency stylelint to v15.10.2 ([e3e5706](https://github.com/ivuorinen/base-configs/commit/e3e5706186ac27e683e64bf31c8b12f858d47ce1))
* **deps:** update dependency stylelint to v15.10.3 ([3eccb35](https://github.com/ivuorinen/base-configs/commit/3eccb355abc28b081639527fa8f958a8707b71f5)) - **deps:** update dependency stylelint to v15.10.3 ([3eccb35](https://github.com/ivuorinen/base-configs/commit/3eccb355abc28b081639527fa8f958a8707b71f5))
* **deps:** update dependency stylelint to v15.11.0 ([#111](https://github.com/ivuorinen/base-configs/issues/111)) ([71165bb](https://github.com/ivuorinen/base-configs/commit/71165bbf376a62d47d1fa145c34c9aae330cb6a9)) - **deps:** update dependency stylelint to v15.11.0 ([#111](https://github.com/ivuorinen/base-configs/issues/111)) ([71165bb](https://github.com/ivuorinen/base-configs/commit/71165bbf376a62d47d1fa145c34c9aae330cb6a9))
* **deps:** update dependency stylelint to v15.6.2 ([f57ecfc](https://github.com/ivuorinen/base-configs/commit/f57ecfcdba8fe4114b3d89645f1a54e0c830f497)) - **deps:** update dependency stylelint to v15.6.2 ([f57ecfc](https://github.com/ivuorinen/base-configs/commit/f57ecfcdba8fe4114b3d89645f1a54e0c830f497))
* **deps:** update dependency stylelint to v15.6.3 ([f67d040](https://github.com/ivuorinen/base-configs/commit/f67d0400e9c1f3c73156a9db842c14f14ba8fee3)) - **deps:** update dependency stylelint to v15.6.3 ([f67d040](https://github.com/ivuorinen/base-configs/commit/f67d0400e9c1f3c73156a9db842c14f14ba8fee3))
* **deps:** update dependency stylelint to v15.7.0 ([#37](https://github.com/ivuorinen/base-configs/issues/37)) ([9bb16fe](https://github.com/ivuorinen/base-configs/commit/9bb16fe93f04dce92d88a83600136ea0d4b12535)) - **deps:** update dependency stylelint to v15.7.0 ([#37](https://github.com/ivuorinen/base-configs/issues/37)) ([9bb16fe](https://github.com/ivuorinen/base-configs/commit/9bb16fe93f04dce92d88a83600136ea0d4b12535))
* **deps:** update dependency stylelint to v15.8.0 ([#46](https://github.com/ivuorinen/base-configs/issues/46)) ([2c2fa4e](https://github.com/ivuorinen/base-configs/commit/2c2fa4eee7ee8803f916d7d5331334aebd822b29)) - **deps:** update dependency stylelint to v15.8.0 ([#46](https://github.com/ivuorinen/base-configs/issues/46)) ([2c2fa4e](https://github.com/ivuorinen/base-configs/commit/2c2fa4eee7ee8803f916d7d5331334aebd822b29))
* **deps:** update dependency stylelint to v15.9.0 ([#49](https://github.com/ivuorinen/base-configs/issues/49)) ([fde55eb](https://github.com/ivuorinen/base-configs/commit/fde55eb3a7b7d5233e0daddc3447c2ba00d7380e)) - **deps:** update dependency stylelint to v15.9.0 ([#49](https://github.com/ivuorinen/base-configs/issues/49)) ([fde55eb](https://github.com/ivuorinen/base-configs/commit/fde55eb3a7b7d5233e0daddc3447c2ba00d7380e))
* **deps:** update dependency stylelint to v16 ([#147](https://github.com/ivuorinen/base-configs/issues/147)) ([25655b9](https://github.com/ivuorinen/base-configs/commit/25655b9c78a6ef1be4f695dbd0b34de4f1401c4b)) - **deps:** update dependency stylelint to v16 ([#147](https://github.com/ivuorinen/base-configs/issues/147)) ([25655b9](https://github.com/ivuorinen/base-configs/commit/25655b9c78a6ef1be4f695dbd0b34de4f1401c4b))
* **deps:** update dependency stylelint to v16.1.0 ([#161](https://github.com/ivuorinen/base-configs/issues/161)) ([b9f17cb](https://github.com/ivuorinen/base-configs/commit/b9f17cbe98e3278bd94768303f14e562527baf94)) - **deps:** update dependency stylelint to v16.1.0 ([#161](https://github.com/ivuorinen/base-configs/issues/161)) ([b9f17cb](https://github.com/ivuorinen/base-configs/commit/b9f17cbe98e3278bd94768303f14e562527baf94))
* **deps:** update dependency stylelint to v16.2.0 ([#178](https://github.com/ivuorinen/base-configs/issues/178)) ([72cb9e1](https://github.com/ivuorinen/base-configs/commit/72cb9e190a154a4ac832445bd1105bf04f42558e)) - **deps:** update dependency stylelint to v16.2.0 ([#178](https://github.com/ivuorinen/base-configs/issues/178)) ([72cb9e1](https://github.com/ivuorinen/base-configs/commit/72cb9e190a154a4ac832445bd1105bf04f42558e))
* **deps:** update dependency stylelint to v16.2.1 ([68ef8df](https://github.com/ivuorinen/base-configs/commit/68ef8dfb8961633d5ea14473fbb48f820b4ae2cb)) - **deps:** update dependency stylelint to v16.2.1 ([68ef8df](https://github.com/ivuorinen/base-configs/commit/68ef8dfb8961633d5ea14473fbb48f820b4ae2cb))
* **deps:** update dependency stylelint to v16.3.0 ([#212](https://github.com/ivuorinen/base-configs/issues/212)) ([c0bea73](https://github.com/ivuorinen/base-configs/commit/c0bea73d1d83b2503f11209bf2da334c80410b08)) - **deps:** update dependency stylelint to v16.3.0 ([#212](https://github.com/ivuorinen/base-configs/issues/212)) ([c0bea73](https://github.com/ivuorinen/base-configs/commit/c0bea73d1d83b2503f11209bf2da334c80410b08))
* **deps:** update dependency stylelint to v16.3.1 ([dd8dcd2](https://github.com/ivuorinen/base-configs/commit/dd8dcd2b7d8e14c7cb5d434df88ac4dc3cfca3fa)) - **deps:** update dependency stylelint to v16.3.1 ([dd8dcd2](https://github.com/ivuorinen/base-configs/commit/dd8dcd2b7d8e14c7cb5d434df88ac4dc3cfca3fa))
* **deps:** update dependency stylelint to v16.4.0 ([#231](https://github.com/ivuorinen/base-configs/issues/231)) ([f8186cb](https://github.com/ivuorinen/base-configs/commit/f8186cb1fef6144a9e83cc373952cee84917a0c4)) - **deps:** update dependency stylelint to v16.4.0 ([#231](https://github.com/ivuorinen/base-configs/issues/231)) ([f8186cb](https://github.com/ivuorinen/base-configs/commit/f8186cb1fef6144a9e83cc373952cee84917a0c4))
* **deps:** update dependency stylelint to v16.5.0 ([#237](https://github.com/ivuorinen/base-configs/issues/237)) ([21968fb](https://github.com/ivuorinen/base-configs/commit/21968fb8895f95f5c37c18098d2af1061f1c5575)) - **deps:** update dependency stylelint to v16.5.0 ([#237](https://github.com/ivuorinen/base-configs/issues/237)) ([21968fb](https://github.com/ivuorinen/base-configs/commit/21968fb8895f95f5c37c18098d2af1061f1c5575))
* **deps:** update dependency stylelint to v16.6.0 ([#252](https://github.com/ivuorinen/base-configs/issues/252)) ([56bccc8](https://github.com/ivuorinen/base-configs/commit/56bccc840e2dca4ff39b4351dcd09d3be3849f2b)) - **deps:** update dependency stylelint to v16.6.0 ([#252](https://github.com/ivuorinen/base-configs/issues/252)) ([56bccc8](https://github.com/ivuorinen/base-configs/commit/56bccc840e2dca4ff39b4351dcd09d3be3849f2b))
* **deps:** update dependency stylelint to v16.6.1 ([dd455ee](https://github.com/ivuorinen/base-configs/commit/dd455ee6da6987088b6a410d12df6267431bf725)) - **deps:** update dependency stylelint to v16.6.1 ([dd455ee](https://github.com/ivuorinen/base-configs/commit/dd455ee6da6987088b6a410d12df6267431bf725))
* **deps:** update dependency stylelint-config-recommended-scss to v10 ([#16](https://github.com/ivuorinen/base-configs/issues/16)) ([9d0c25e](https://github.com/ivuorinen/base-configs/commit/9d0c25ecd81b5af13f744c00d1b112d6e7792b49)) - **deps:** update dependency stylelint-config-recommended-scss to v10 ([#16](https://github.com/ivuorinen/base-configs/issues/16)) ([9d0c25e](https://github.com/ivuorinen/base-configs/commit/9d0c25ecd81b5af13f744c00d1b112d6e7792b49))
* **deps:** update dependency stylelint-config-recommended-scss to v11 ([#17](https://github.com/ivuorinen/base-configs/issues/17)) ([2bd9628](https://github.com/ivuorinen/base-configs/commit/2bd9628e8d7a175a8f937ec8cd9abc032d884596)) - **deps:** update dependency stylelint-config-recommended-scss to v11 ([#17](https://github.com/ivuorinen/base-configs/issues/17)) ([2bd9628](https://github.com/ivuorinen/base-configs/commit/2bd9628e8d7a175a8f937ec8cd9abc032d884596))
* **deps:** update dependency stylelint-config-recommended-scss to v12 ([#30](https://github.com/ivuorinen/base-configs/issues/30)) ([4c6d32f](https://github.com/ivuorinen/base-configs/commit/4c6d32ff5ff5164bd5301f5ae9e47972c2947d61)) - **deps:** update dependency stylelint-config-recommended-scss to v12 ([#30](https://github.com/ivuorinen/base-configs/issues/30)) ([4c6d32f](https://github.com/ivuorinen/base-configs/commit/4c6d32ff5ff5164bd5301f5ae9e47972c2947d61))
* **deps:** update dependency stylelint-config-recommended-scss to v13 ([#89](https://github.com/ivuorinen/base-configs/issues/89)) ([6bed25d](https://github.com/ivuorinen/base-configs/commit/6bed25d121bc9abb7baf1b84f538f41d2a8fa229)) - **deps:** update dependency stylelint-config-recommended-scss to v13 ([#89](https://github.com/ivuorinen/base-configs/issues/89)) ([6bed25d](https://github.com/ivuorinen/base-configs/commit/6bed25d121bc9abb7baf1b84f538f41d2a8fa229))
* **deps:** update dependency stylelint-config-recommended-scss to v13.1.0 ([6155ae5](https://github.com/ivuorinen/base-configs/commit/6155ae52a6431f23930c211b041819dcf6a206fa)) - **deps:** update dependency stylelint-config-recommended-scss to v13.1.0 ([6155ae5](https://github.com/ivuorinen/base-configs/commit/6155ae52a6431f23930c211b041819dcf6a206fa))
* **deps:** update dependency stylelint-config-recommended-scss to v14 ([#153](https://github.com/ivuorinen/base-configs/issues/153)) ([f5b0e84](https://github.com/ivuorinen/base-configs/commit/f5b0e8485b4e2998d404a6172e48ed44ac0f395e)) - **deps:** update dependency stylelint-config-recommended-scss to v14 ([#153](https://github.com/ivuorinen/base-configs/issues/153)) ([f5b0e84](https://github.com/ivuorinen/base-configs/commit/f5b0e8485b4e2998d404a6172e48ed44ac0f395e))
* **deps:** update dependency stylelint-config-recommended-scss to v9 ([#18](https://github.com/ivuorinen/base-configs/issues/18)) ([d7cd79e](https://github.com/ivuorinen/base-configs/commit/d7cd79ee14689c3e3592bace768663f69f5dec2d)) - **deps:** update dependency stylelint-config-recommended-scss to v9 ([#18](https://github.com/ivuorinen/base-configs/issues/18)) ([d7cd79e](https://github.com/ivuorinen/base-configs/commit/d7cd79ee14689c3e3592bace768663f69f5dec2d))
* **deps:** update dependency stylelint-config-standard to v30 ([#19](https://github.com/ivuorinen/base-configs/issues/19)) ([00a1e64](https://github.com/ivuorinen/base-configs/commit/00a1e64fccd502bc1b1fa18af9a2ce8988648e40)) - **deps:** update dependency stylelint-config-standard to v30 ([#19](https://github.com/ivuorinen/base-configs/issues/19)) ([00a1e64](https://github.com/ivuorinen/base-configs/commit/00a1e64fccd502bc1b1fa18af9a2ce8988648e40))
* **deps:** update dependency stylelint-config-standard to v31 ([#20](https://github.com/ivuorinen/base-configs/issues/20)) ([d3c10df](https://github.com/ivuorinen/base-configs/commit/d3c10df2a753a6b73a1079eef6cbfe8dea3ab4ad)) - **deps:** update dependency stylelint-config-standard to v31 ([#20](https://github.com/ivuorinen/base-configs/issues/20)) ([d3c10df](https://github.com/ivuorinen/base-configs/commit/d3c10df2a753a6b73a1079eef6cbfe8dea3ab4ad))
* **deps:** update dependency stylelint-config-standard to v32 ([#21](https://github.com/ivuorinen/base-configs/issues/21)) ([00f796d](https://github.com/ivuorinen/base-configs/commit/00f796da2d9c9165ecfeb3655b5a741af43b11de)) - **deps:** update dependency stylelint-config-standard to v32 ([#21](https://github.com/ivuorinen/base-configs/issues/21)) ([00f796d](https://github.com/ivuorinen/base-configs/commit/00f796da2d9c9165ecfeb3655b5a741af43b11de))
* **deps:** update dependency stylelint-config-standard to v33 ([#22](https://github.com/ivuorinen/base-configs/issues/22)) ([bcdb430](https://github.com/ivuorinen/base-configs/commit/bcdb430b04faf0cb49a0ea67277a4d9be830fef4)) - **deps:** update dependency stylelint-config-standard to v33 ([#22](https://github.com/ivuorinen/base-configs/issues/22)) ([bcdb430](https://github.com/ivuorinen/base-configs/commit/bcdb430b04faf0cb49a0ea67277a4d9be830fef4))
* **deps:** update dependency stylelint-config-standard to v34 ([#56](https://github.com/ivuorinen/base-configs/issues/56)) ([2ec6c78](https://github.com/ivuorinen/base-configs/commit/2ec6c788deae6987f4afd6d85bb1bea8d43750ee)) - **deps:** update dependency stylelint-config-standard to v34 ([#56](https://github.com/ivuorinen/base-configs/issues/56)) ([2ec6c78](https://github.com/ivuorinen/base-configs/commit/2ec6c788deae6987f4afd6d85bb1bea8d43750ee))
* **deps:** update dependency stylelint-config-standard to v35 ([#148](https://github.com/ivuorinen/base-configs/issues/148)) ([ee6abbd](https://github.com/ivuorinen/base-configs/commit/ee6abbdda70a04514a0c9c98f48fe0b3dfa775ec)) - **deps:** update dependency stylelint-config-standard to v35 ([#148](https://github.com/ivuorinen/base-configs/issues/148)) ([ee6abbd](https://github.com/ivuorinen/base-configs/commit/ee6abbdda70a04514a0c9c98f48fe0b3dfa775ec))
* **deps:** update dependency stylelint-config-standard to v36 ([#162](https://github.com/ivuorinen/base-configs/issues/162)) ([e289759](https://github.com/ivuorinen/base-configs/commit/e28975966900b329c39286d2f7abe598398b89a0)) - **deps:** update dependency stylelint-config-standard to v36 ([#162](https://github.com/ivuorinen/base-configs/issues/162)) ([e289759](https://github.com/ivuorinen/base-configs/commit/e28975966900b329c39286d2f7abe598398b89a0))
* **deps:** update dependency stylelint-order to v6 ([#23](https://github.com/ivuorinen/base-configs/issues/23)) ([de3e6dc](https://github.com/ivuorinen/base-configs/commit/de3e6dc75f9b63d2b1a19c143f58de2dad312217)) - **deps:** update dependency stylelint-order to v6 ([#23](https://github.com/ivuorinen/base-configs/issues/23)) ([de3e6dc](https://github.com/ivuorinen/base-configs/commit/de3e6dc75f9b63d2b1a19c143f58de2dad312217))
* **deps:** update dependency stylelint-order to v6.0.4 ([83e5b84](https://github.com/ivuorinen/base-configs/commit/83e5b8478520cb6f79a9b5a88666b1922e3632f7)) - **deps:** update dependency stylelint-order to v6.0.4 ([83e5b84](https://github.com/ivuorinen/base-configs/commit/83e5b8478520cb6f79a9b5a88666b1922e3632f7))
* **deps:** update dependency stylelint-scss to v4.7.0 ([#10](https://github.com/ivuorinen/base-configs/issues/10)) ([046b3c2](https://github.com/ivuorinen/base-configs/commit/046b3c206b04d570daaa7de6051d1c90db9aa221)) - **deps:** update dependency stylelint-scss to v4.7.0 ([#10](https://github.com/ivuorinen/base-configs/issues/10)) ([046b3c2](https://github.com/ivuorinen/base-configs/commit/046b3c206b04d570daaa7de6051d1c90db9aa221))
* **deps:** update dependency stylelint-scss to v5 ([#24](https://github.com/ivuorinen/base-configs/issues/24)) ([199e029](https://github.com/ivuorinen/base-configs/commit/199e02975a7659095015f3bac48f39b6eaac666d)) - **deps:** update dependency stylelint-scss to v5 ([#24](https://github.com/ivuorinen/base-configs/issues/24)) ([199e029](https://github.com/ivuorinen/base-configs/commit/199e02975a7659095015f3bac48f39b6eaac666d))
* **deps:** update dependency stylelint-scss to v5.0.1 ([#39](https://github.com/ivuorinen/base-configs/issues/39)) ([3728f03](https://github.com/ivuorinen/base-configs/commit/3728f034c59c9764b29603161c569ae67df69fd2)) - **deps:** update dependency stylelint-scss to v5.0.1 ([#39](https://github.com/ivuorinen/base-configs/issues/39)) ([3728f03](https://github.com/ivuorinen/base-configs/commit/3728f034c59c9764b29603161c569ae67df69fd2))
* **deps:** update dependency stylelint-scss to v5.1.0 ([#73](https://github.com/ivuorinen/base-configs/issues/73)) ([0b0d8dc](https://github.com/ivuorinen/base-configs/commit/0b0d8dcd7d2edbfee8fab0674de710fd4b75163c)) - **deps:** update dependency stylelint-scss to v5.1.0 ([#73](https://github.com/ivuorinen/base-configs/issues/73)) ([0b0d8dc](https://github.com/ivuorinen/base-configs/commit/0b0d8dcd7d2edbfee8fab0674de710fd4b75163c))
* **deps:** update dependency stylelint-scss to v5.2.0 ([#93](https://github.com/ivuorinen/base-configs/issues/93)) ([10183f8](https://github.com/ivuorinen/base-configs/commit/10183f8fe056df25ca9bd218d57520e5d0f62691)) - **deps:** update dependency stylelint-scss to v5.2.0 ([#93](https://github.com/ivuorinen/base-configs/issues/93)) ([10183f8](https://github.com/ivuorinen/base-configs/commit/10183f8fe056df25ca9bd218d57520e5d0f62691))
* **deps:** update dependency stylelint-scss to v5.2.1 ([52091b8](https://github.com/ivuorinen/base-configs/commit/52091b86f0a2a400e54e83be7036a713b0063e9e)) - **deps:** update dependency stylelint-scss to v5.2.1 ([52091b8](https://github.com/ivuorinen/base-configs/commit/52091b86f0a2a400e54e83be7036a713b0063e9e))
* **deps:** update dependency stylelint-scss to v5.3.0 ([#122](https://github.com/ivuorinen/base-configs/issues/122)) ([d139003](https://github.com/ivuorinen/base-configs/commit/d139003e0d6607add7cd2f88ac14ad9c5be352c6)) - **deps:** update dependency stylelint-scss to v5.3.0 ([#122](https://github.com/ivuorinen/base-configs/issues/122)) ([d139003](https://github.com/ivuorinen/base-configs/commit/d139003e0d6607add7cd2f88ac14ad9c5be352c6))
* **deps:** update dependency stylelint-scss to v5.3.1 ([#130](https://github.com/ivuorinen/base-configs/issues/130)) ([720ffa1](https://github.com/ivuorinen/base-configs/commit/720ffa18ba37f7a336f73e48049add5e42133a39)) - **deps:** update dependency stylelint-scss to v5.3.1 ([#130](https://github.com/ivuorinen/base-configs/issues/130)) ([720ffa1](https://github.com/ivuorinen/base-configs/commit/720ffa18ba37f7a336f73e48049add5e42133a39))
* **deps:** update dependency stylelint-scss to v6 ([#154](https://github.com/ivuorinen/base-configs/issues/154)) ([d48a98b](https://github.com/ivuorinen/base-configs/commit/d48a98b69eb96a48abe9e144f4c8bb273297557f)) - **deps:** update dependency stylelint-scss to v6 ([#154](https://github.com/ivuorinen/base-configs/issues/154)) ([d48a98b](https://github.com/ivuorinen/base-configs/commit/d48a98b69eb96a48abe9e144f4c8bb273297557f))
* **deps:** update dependency stylelint-scss to v6.1.0 ([#179](https://github.com/ivuorinen/base-configs/issues/179)) ([4f9f867](https://github.com/ivuorinen/base-configs/commit/4f9f8675ed12232f1fe0049a3f72bb6c896557b1)) - **deps:** update dependency stylelint-scss to v6.1.0 ([#179](https://github.com/ivuorinen/base-configs/issues/179)) ([4f9f867](https://github.com/ivuorinen/base-configs/commit/4f9f8675ed12232f1fe0049a3f72bb6c896557b1))
* **deps:** update dependency stylelint-scss to v6.2.0 ([#200](https://github.com/ivuorinen/base-configs/issues/200)) ([c4f7a0f](https://github.com/ivuorinen/base-configs/commit/c4f7a0f493816d48e91bf4ed4564499242a225c0)) - **deps:** update dependency stylelint-scss to v6.2.0 ([#200](https://github.com/ivuorinen/base-configs/issues/200)) ([c4f7a0f](https://github.com/ivuorinen/base-configs/commit/c4f7a0f493816d48e91bf4ed4564499242a225c0))
* **deps:** update dependency stylelint-scss to v6.2.1 ([afa8a81](https://github.com/ivuorinen/base-configs/commit/afa8a811529f7cd3894e17f2de65b240dba4df0a)) - **deps:** update dependency stylelint-scss to v6.2.1 ([afa8a81](https://github.com/ivuorinen/base-configs/commit/afa8a811529f7cd3894e17f2de65b240dba4df0a))
* **deps:** update dependency stylelint-scss to v6.3.0 ([#240](https://github.com/ivuorinen/base-configs/issues/240)) ([8bf9433](https://github.com/ivuorinen/base-configs/commit/8bf9433d49da02383dd2671bafd060a6b079522c)) - **deps:** update dependency stylelint-scss to v6.3.0 ([#240](https://github.com/ivuorinen/base-configs/issues/240)) ([8bf9433](https://github.com/ivuorinen/base-configs/commit/8bf9433d49da02383dd2671bafd060a6b079522c))
* **deps:** update devdependencies (patch) ([ed302ac](https://github.com/ivuorinen/base-configs/commit/ed302acd4e4671eb21e20c3fbb053e6c989c203b)) - **deps:** update devdependencies (patch) ([ed302ac](https://github.com/ivuorinen/base-configs/commit/ed302acd4e4671eb21e20c3fbb053e6c989c203b))
* **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))
* **deps:** update devdependencies (patch) ([94419d8](https://github.com/ivuorinen/base-configs/commit/94419d862b9ff3ce9e77b4265bc28fe322153388)) - **deps:** update devdependencies (patch) ([94419d8](https://github.com/ivuorinen/base-configs/commit/94419d862b9ff3ce9e77b4265bc28fe322153388))
* **deps:** update devdependencies (patch) ([e2506fd](https://github.com/ivuorinen/base-configs/commit/e2506fd7c3f92ffdeb0b6c47cd925918aa91b306)) - **deps:** update devdependencies (patch) ([e2506fd](https://github.com/ivuorinen/base-configs/commit/e2506fd7c3f92ffdeb0b6c47cd925918aa91b306))
* **deps:** update devdependencies (patch) ([1282efe](https://github.com/ivuorinen/base-configs/commit/1282efe0e305ec15247b968ec9663275b9a2e8d5)) - **deps:** update devdependencies (patch) ([1282efe](https://github.com/ivuorinen/base-configs/commit/1282efe0e305ec15247b968ec9663275b9a2e8d5))
* **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))
* **deps:** update devdependencies (patch) to v17.6.3 ([ef76391](https://github.com/ivuorinen/base-configs/commit/ef76391d738b84e463ebb3d23bd5b2d025fcfd92)) - **deps:** update devdependencies (patch) to v17.6.3 ([ef76391](https://github.com/ivuorinen/base-configs/commit/ef76391d738b84e463ebb3d23bd5b2d025fcfd92))
* **deps:** update devdependencies (patch) to v17.6.6 ([#48](https://github.com/ivuorinen/base-configs/issues/48)) ([5b31615](https://github.com/ivuorinen/base-configs/commit/5b31615647a369b70b7272cf4527d3e8d1fc386a)) - **deps:** update devdependencies (patch) to v17.6.6 ([#48](https://github.com/ivuorinen/base-configs/issues/48)) ([5b31615](https://github.com/ivuorinen/base-configs/commit/5b31615647a369b70b7272cf4527d3e8d1fc386a))
* **deps:** update devdependencies (patch) to v17.6.7 ([525754b](https://github.com/ivuorinen/base-configs/commit/525754bacfaddf883b73a7ec88ed216db752f81c)) - **deps:** update devdependencies (patch) to v17.6.7 ([525754b](https://github.com/ivuorinen/base-configs/commit/525754bacfaddf883b73a7ec88ed216db752f81c))
* **deps:** update devdependencies (patch) to v18.4.2 ([22de2ef](https://github.com/ivuorinen/base-configs/commit/22de2efbabd32019afe995c75d460436be1144f6)) - **deps:** update devdependencies (patch) to v18.4.2 ([22de2ef](https://github.com/ivuorinen/base-configs/commit/22de2efbabd32019afe995c75d460436be1144f6))
* **deps:** update devdependencies (patch) to v18.4.4 ([5b1c8e2](https://github.com/ivuorinen/base-configs/commit/5b1c8e213d5c758d9fcecce6b9adfc87354aa915)) - **deps:** update devdependencies (patch) to v18.4.4 ([5b1c8e2](https://github.com/ivuorinen/base-configs/commit/5b1c8e213d5c758d9fcecce6b9adfc87354aa915))
* **deps:** update devdependencies (patch) to v18.6.1 ([e996d19](https://github.com/ivuorinen/base-configs/commit/e996d191e5d51cb364ea7298ec8ee35722850aa6)) - **deps:** update devdependencies (patch) to v18.6.1 ([e996d19](https://github.com/ivuorinen/base-configs/commit/e996d191e5d51cb364ea7298ec8ee35722850aa6))
* **deps:** update eslint ([14f93ce](https://github.com/ivuorinen/base-configs/commit/14f93ceb59b03bf81ebefaeb8ced5285bbf01dbb)) - **deps:** update eslint ([14f93ce](https://github.com/ivuorinen/base-configs/commit/14f93ceb59b03bf81ebefaeb8ced5285bbf01dbb))
* **deps:** update eslint ([#113](https://github.com/ivuorinen/base-configs/issues/113)) ([4eff12a](https://github.com/ivuorinen/base-configs/commit/4eff12a838f046088e401bdf131356e475e4d4ff)) - **deps:** update eslint ([#113](https://github.com/ivuorinen/base-configs/issues/113)) ([4eff12a](https://github.com/ivuorinen/base-configs/commit/4eff12a838f046088e401bdf131356e475e4d4ff))
* **deps:** update eslint ([#189](https://github.com/ivuorinen/base-configs/issues/189)) ([07758aa](https://github.com/ivuorinen/base-configs/commit/07758aa9ff159a1e7d1518734c41ac6c26e2b1c3)) - **deps:** update eslint ([#189](https://github.com/ivuorinen/base-configs/issues/189)) ([07758aa](https://github.com/ivuorinen/base-configs/commit/07758aa9ff159a1e7d1518734c41ac6c26e2b1c3))
* **deps:** update eslint ([#6](https://github.com/ivuorinen/base-configs/issues/6)) ([f593c37](https://github.com/ivuorinen/base-configs/commit/f593c37ffbd60da04910d901ec3a31606e102360)) - **deps:** update eslint ([#6](https://github.com/ivuorinen/base-configs/issues/6)) ([f593c37](https://github.com/ivuorinen/base-configs/commit/f593c37ffbd60da04910d901ec3a31606e102360))
* **deps:** update eslint ([#70](https://github.com/ivuorinen/base-configs/issues/70)) ([b700c51](https://github.com/ivuorinen/base-configs/commit/b700c51993c16af24e389fd07463cbebb8101da2)) - **deps:** update eslint ([#70](https://github.com/ivuorinen/base-configs/issues/70)) ([b700c51](https://github.com/ivuorinen/base-configs/commit/b700c51993c16af24e389fd07463cbebb8101da2))
* **deps:** update eslint to 9.2 ([#241](https://github.com/ivuorinen/base-configs/issues/241)) ([a9fbc1d](https://github.com/ivuorinen/base-configs/commit/a9fbc1dd15b8006385a8c66414067704f8d16d49)) - **deps:** update eslint to 9.2 ([#241](https://github.com/ivuorinen/base-configs/issues/241)) ([a9fbc1d](https://github.com/ivuorinen/base-configs/commit/a9fbc1dd15b8006385a8c66414067704f8d16d49))
* **deps:** update eslint to 9.5.0 ([#264](https://github.com/ivuorinen/base-configs/issues/264)) ([0c0ac2a](https://github.com/ivuorinen/base-configs/commit/0c0ac2abe9f345df6a84b6988a27d64a1d7a59a4)) - **deps:** update eslint to 9.5.0 ([#264](https://github.com/ivuorinen/base-configs/issues/264)) ([0c0ac2a](https://github.com/ivuorinen/base-configs/commit/0c0ac2abe9f345df6a84b6988a27d64a1d7a59a4))
* **deps:** update eslint to 9.6.0 ([#268](https://github.com/ivuorinen/base-configs/issues/268)) ([b40f773](https://github.com/ivuorinen/base-configs/commit/b40f77373e447c8250f8c491618f0e7d1fe6992d)) - **deps:** update eslint to 9.6.0 ([#268](https://github.com/ivuorinen/base-configs/issues/268)) ([b40f773](https://github.com/ivuorinen/base-configs/commit/b40f77373e447c8250f8c491618f0e7d1fe6992d))
* **deps:** update eslint to 9.7.0 ([#276](https://github.com/ivuorinen/base-configs/issues/276)) ([e1c45b8](https://github.com/ivuorinen/base-configs/commit/e1c45b82eb617edb7edd075f9218e07504ba63c2)) - **deps:** update eslint to 9.7.0 ([#276](https://github.com/ivuorinen/base-configs/issues/276)) ([e1c45b8](https://github.com/ivuorinen/base-configs/commit/e1c45b82eb617edb7edd075f9218e07504ba63c2))
* **deps:** update eslint to 9.8.0 ([#281](https://github.com/ivuorinen/base-configs/issues/281)) ([72b0871](https://github.com/ivuorinen/base-configs/commit/72b0871beb452e408b460e5d2804085affef9dc4)) - **deps:** update eslint to 9.8.0 ([#281](https://github.com/ivuorinen/base-configs/issues/281)) ([72b0871](https://github.com/ivuorinen/base-configs/commit/72b0871beb452e408b460e5d2804085affef9dc4))
* **deps:** update eslint to 9.9.0 ([#286](https://github.com/ivuorinen/base-configs/issues/286)) ([ba3b6cc](https://github.com/ivuorinen/base-configs/commit/ba3b6cc2d81e058e863ee3b138f7d77a6be373e4)) - **deps:** update eslint to 9.9.0 ([#286](https://github.com/ivuorinen/base-configs/issues/286)) ([ba3b6cc](https://github.com/ivuorinen/base-configs/commit/ba3b6cc2d81e058e863ee3b138f7d77a6be373e4))
* **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))
* **deps:** update eslint-plugin-jest to 29.0.0 ([#365](https://github.com/ivuorinen/base-configs/issues/365)) ([deed1fa](https://github.com/ivuorinen/base-configs/commit/deed1fa28a4ed5dc1da450d04c6c818269dc47b5)) - **deps:** update eslint-plugin-jest to 29.0.0 ([#365](https://github.com/ivuorinen/base-configs/issues/365)) ([deed1fa](https://github.com/ivuorinen/base-configs/commit/deed1fa28a4ed5dc1da450d04c6c818269dc47b5))
* **deps:** update eslint-plugin-promise to 7.0.0 ([#279](https://github.com/ivuorinen/base-configs/issues/279)) ([6f7f3e9](https://github.com/ivuorinen/base-configs/commit/6f7f3e9cfee3428eb723cbad79828741ecb13748)) - **deps:** update eslint-plugin-promise to 7.0.0 ([#279](https://github.com/ivuorinen/base-configs/issues/279)) ([6f7f3e9](https://github.com/ivuorinen/base-configs/commit/6f7f3e9cfee3428eb723cbad79828741ecb13748))
* **deps:** update eslint-plugin-sonarjs to 2.0.0 ([#289](https://github.com/ivuorinen/base-configs/issues/289)) ([987baa6](https://github.com/ivuorinen/base-configs/commit/987baa6272b68aaab4aa34ca86892c1dd06fea77)) - **deps:** update eslint-plugin-sonarjs to 2.0.0 ([#289](https://github.com/ivuorinen/base-configs/issues/289)) ([987baa6](https://github.com/ivuorinen/base-configs/commit/987baa6272b68aaab4aa34ca86892c1dd06fea77))
* **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))
* **deps:** update markdownlint-cli to 0.43.0 ([#306](https://github.com/ivuorinen/base-configs/issues/306)) ([adb8a9f](https://github.com/ivuorinen/base-configs/commit/adb8a9f577622af91b6d6c6a1add3c9d22b3e48e)) - **deps:** update markdownlint-cli to 0.43.0 ([#306](https://github.com/ivuorinen/base-configs/issues/306)) ([adb8a9f](https://github.com/ivuorinen/base-configs/commit/adb8a9f577622af91b6d6c6a1add3c9d22b3e48e))
* **deps:** update markdownlint-cli to 0.44.0 ([#327](https://github.com/ivuorinen/base-configs/issues/327)) ([b1b2d8e](https://github.com/ivuorinen/base-configs/commit/b1b2d8e581cb2d939eab3ff2ae33643c4419196a)) - **deps:** update markdownlint-cli to 0.44.0 ([#327](https://github.com/ivuorinen/base-configs/issues/327)) ([b1b2d8e](https://github.com/ivuorinen/base-configs/commit/b1b2d8e581cb2d939eab3ff2ae33643c4419196a))
* **deps:** update markdownlint-cli to 0.45.0 ([#359](https://github.com/ivuorinen/base-configs/issues/359)) ([6b98249](https://github.com/ivuorinen/base-configs/commit/6b98249310852a9f24ffd6a0cdda966c4c864959)) - **deps:** update markdownlint-cli to 0.45.0 ([#359](https://github.com/ivuorinen/base-configs/issues/359)) ([6b98249](https://github.com/ivuorinen/base-configs/commit/6b98249310852a9f24ffd6a0cdda966c4c864959))
* **deps:** update prettier to 3.3.3 ([#277](https://github.com/ivuorinen/base-configs/issues/277)) ([03e8a97](https://github.com/ivuorinen/base-configs/commit/03e8a97e2b0d3a35e49969d100df16b7f7aaa89d)) - **deps:** update prettier to 3.3.3 ([#277](https://github.com/ivuorinen/base-configs/issues/277)) ([03e8a97](https://github.com/ivuorinen/base-configs/commit/03e8a97e2b0d3a35e49969d100df16b7f7aaa89d))
* **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))
* **deps:** update stylelint to 16.7.0 ([#275](https://github.com/ivuorinen/base-configs/issues/275)) ([b5e55bf](https://github.com/ivuorinen/base-configs/commit/b5e55bf888a926efd9feb3a0a87bf18870457f3b)) - **deps:** update stylelint to 16.7.0 ([#275](https://github.com/ivuorinen/base-configs/issues/275)) ([b5e55bf](https://github.com/ivuorinen/base-configs/commit/b5e55bf888a926efd9feb3a0a87bf18870457f3b))
* **deps:** update stylelint to 16.8.1 ([#282](https://github.com/ivuorinen/base-configs/issues/282)) ([338e7e3](https://github.com/ivuorinen/base-configs/commit/338e7e343d5cc025e9c911bf8b57d3b9cdb802b1)) - **deps:** update stylelint to 16.8.1 ([#282](https://github.com/ivuorinen/base-configs/issues/282)) ([338e7e3](https://github.com/ivuorinen/base-configs/commit/338e7e343d5cc025e9c911bf8b57d3b9cdb802b1))
* **deps:** update stylelint to 16.8.2 ([#287](https://github.com/ivuorinen/base-configs/issues/287)) ([3b552d1](https://github.com/ivuorinen/base-configs/commit/3b552d1ae161039e65c799bae44914792632400c)) - **deps:** update stylelint to 16.8.2 ([#287](https://github.com/ivuorinen/base-configs/issues/287)) ([3b552d1](https://github.com/ivuorinen/base-configs/commit/3b552d1ae161039e65c799bae44914792632400c))
* **deps:** update stylelint-config-recommended-scss to 14.1.0 ([#272](https://github.com/ivuorinen/base-configs/issues/272)) ([cc414bc](https://github.com/ivuorinen/base-configs/commit/cc414bc57f1b4fa55aac4c8818ca6f32fe3f5896)) - **deps:** update stylelint-config-recommended-scss to 14.1.0 ([#272](https://github.com/ivuorinen/base-configs/issues/272)) ([cc414bc](https://github.com/ivuorinen/base-configs/commit/cc414bc57f1b4fa55aac4c8818ca6f32fe3f5896))
* **deps:** update stylelint-config-recommended-scss to 15.0.0 ([#356](https://github.com/ivuorinen/base-configs/issues/356)) ([8e9d21c](https://github.com/ivuorinen/base-configs/commit/8e9d21c3acca6c203453edd5c2bd628898760dde)) - **deps:** update stylelint-config-recommended-scss to 15.0.0 ([#356](https://github.com/ivuorinen/base-configs/issues/356)) ([8e9d21c](https://github.com/ivuorinen/base-configs/commit/8e9d21c3acca6c203453edd5c2bd628898760dde))
* **deps:** update stylelint-config-standard to 36.0.1 ([#267](https://github.com/ivuorinen/base-configs/issues/267)) ([5ccf62b](https://github.com/ivuorinen/base-configs/commit/5ccf62bf86a690fdc4c561bc6169526d02cdc4b0)) - **deps:** update stylelint-config-standard to 36.0.1 ([#267](https://github.com/ivuorinen/base-configs/issues/267)) ([5ccf62b](https://github.com/ivuorinen/base-configs/commit/5ccf62bf86a690fdc4c561bc6169526d02cdc4b0))
* **deps:** update stylelint-config-standard to 37.0.0 ([#323](https://github.com/ivuorinen/base-configs/issues/323)) ([6a5b8ef](https://github.com/ivuorinen/base-configs/commit/6a5b8eff0c59f698b45eb431918fddeca6db4ff9)) - **deps:** update stylelint-config-standard to 37.0.0 ([#323](https://github.com/ivuorinen/base-configs/issues/323)) ([6a5b8ef](https://github.com/ivuorinen/base-configs/commit/6a5b8eff0c59f698b45eb431918fddeca6db4ff9))
* **deps:** update stylelint-config-standard to 38.0.0 ([#350](https://github.com/ivuorinen/base-configs/issues/350)) ([aec3f7c](https://github.com/ivuorinen/base-configs/commit/aec3f7cf78715c39dc206e90bd9f4bfece62b724)) - **deps:** update stylelint-config-standard to 38.0.0 ([#350](https://github.com/ivuorinen/base-configs/issues/350)) ([aec3f7c](https://github.com/ivuorinen/base-configs/commit/aec3f7cf78715c39dc206e90bd9f4bfece62b724))
* **deps:** update stylelint-order to 7.0.0 ([#353](https://github.com/ivuorinen/base-configs/issues/353)) ([e6f1a12](https://github.com/ivuorinen/base-configs/commit/e6f1a12eaa46f0577e42c17e14d4fa9cef35b780)) - **deps:** update stylelint-order to 7.0.0 ([#353](https://github.com/ivuorinen/base-configs/issues/353)) ([e6f1a12](https://github.com/ivuorinen/base-configs/commit/e6f1a12eaa46f0577e42c17e14d4fa9cef35b780))
* **deps:** update stylelint-scss to 6.3.2 ([#266](https://github.com/ivuorinen/base-configs/issues/266)) ([2ca8482](https://github.com/ivuorinen/base-configs/commit/2ca84826c4c481f332925336a7291542a393dfe5)) - **deps:** update stylelint-scss to 6.3.2 ([#266](https://github.com/ivuorinen/base-configs/issues/266)) ([2ca8482](https://github.com/ivuorinen/base-configs/commit/2ca84826c4c481f332925336a7291542a393dfe5))
* **deps:** update stylelint-scss to 6.4.0 ([#273](https://github.com/ivuorinen/base-configs/issues/273)) ([f1962c8](https://github.com/ivuorinen/base-configs/commit/f1962c835384ad292261fd8187a08f1494c93ccd)) - **deps:** update stylelint-scss to 6.4.0 ([#273](https://github.com/ivuorinen/base-configs/issues/273)) ([f1962c8](https://github.com/ivuorinen/base-configs/commit/f1962c835384ad292261fd8187a08f1494c93ccd))
* **deps:** update stylelint-scss to 6.4.1 ([#274](https://github.com/ivuorinen/base-configs/issues/274)) ([76d8d81](https://github.com/ivuorinen/base-configs/commit/76d8d81fb82f58626c81335240da73d8e95ecea9)) - **deps:** update stylelint-scss to 6.4.1 ([#274](https://github.com/ivuorinen/base-configs/issues/274)) ([76d8d81](https://github.com/ivuorinen/base-configs/commit/76d8d81fb82f58626c81335240da73d8e95ecea9))
* **deps:** update stylelint-scss to 6.5.0 ([#284](https://github.com/ivuorinen/base-configs/issues/284)) ([5d6d89f](https://github.com/ivuorinen/base-configs/commit/5d6d89fdeb7868e0b30e243bb0ffd554b4ea0f7d)) - **deps:** update stylelint-scss to 6.5.0 ([#284](https://github.com/ivuorinen/base-configs/issues/284)) ([5d6d89f](https://github.com/ivuorinen/base-configs/commit/5d6d89fdeb7868e0b30e243bb0ffd554b4ea0f7d))
* **github-action:** update actions/cache ( v4.1.0 → v4.1.1 ) ([#296](https://github.com/ivuorinen/base-configs/issues/296)) ([3449c49](https://github.com/ivuorinen/base-configs/commit/3449c495cc80deacf23ee0d7da11113e94c9150e)) - **github-action:** update actions/cache ( v4.1.0 → v4.1.1 ) ([#296](https://github.com/ivuorinen/base-configs/issues/296)) ([3449c49](https://github.com/ivuorinen/base-configs/commit/3449c495cc80deacf23ee0d7da11113e94c9150e))
* **github-action:** update actions/cache ( v4.1.1 → v4.1.2 ) ([3bb966a](https://github.com/ivuorinen/base-configs/commit/3bb966a60356dea453796445ca01ae1eb7756045)) - **github-action:** update actions/cache ( v4.1.1 → v4.1.2 ) ([3bb966a](https://github.com/ivuorinen/base-configs/commit/3bb966a60356dea453796445ca01ae1eb7756045))
* **github-action:** update actions/cache (v4.2.0 → v4.2.1) ([#339](https://github.com/ivuorinen/base-configs/issues/339)) ([9f335b4](https://github.com/ivuorinen/base-configs/commit/9f335b48d5a4d5b64166c3288e48acdb582f7ca2)) - **github-action:** update actions/cache (v4.2.0 → v4.2.1) ([#339](https://github.com/ivuorinen/base-configs/issues/339)) ([9f335b4](https://github.com/ivuorinen/base-configs/commit/9f335b48d5a4d5b64166c3288e48acdb582f7ca2))
* **github-action:** update actions/cache (v4.2.1 → v4.2.2) ([#343](https://github.com/ivuorinen/base-configs/issues/343)) ([8a79dfb](https://github.com/ivuorinen/base-configs/commit/8a79dfb13c9ab62a4453ea76397963a3b39a4cdd)) - **github-action:** update actions/cache (v4.2.1 → v4.2.2) ([#343](https://github.com/ivuorinen/base-configs/issues/343)) ([8a79dfb](https://github.com/ivuorinen/base-configs/commit/8a79dfb13c9ab62a4453ea76397963a3b39a4cdd))
* **github-action:** update actions/cache (v4.2.2 → v4.2.3) ([#348](https://github.com/ivuorinen/base-configs/issues/348)) ([adcb51f](https://github.com/ivuorinen/base-configs/commit/adcb51fcfe5afa67c4535902f988504483a44636)) - **github-action:** update actions/cache (v4.2.2 → v4.2.3) ([#348](https://github.com/ivuorinen/base-configs/issues/348)) ([adcb51f](https://github.com/ivuorinen/base-configs/commit/adcb51fcfe5afa67c4535902f988504483a44636))
* **github-action:** update actions/cache (v4.2.3 → v4.2.4) ([#378](https://github.com/ivuorinen/base-configs/issues/378)) ([65cb6d3](https://github.com/ivuorinen/base-configs/commit/65cb6d396ffd120bde012b314e2f02f41180a6fd)) - **github-action:** update actions/cache (v4.2.3 → v4.2.4) ([#378](https://github.com/ivuorinen/base-configs/issues/378)) ([65cb6d3](https://github.com/ivuorinen/base-configs/commit/65cb6d396ffd120bde012b314e2f02f41180a6fd))
* **github-action:** update actions/checkout ( v4.2.0 → v4.2.1 ) ([5405ab1](https://github.com/ivuorinen/base-configs/commit/5405ab1a24f434c6bf81274a0cac1d4e13ce359f)) - **github-action:** update actions/checkout ( v4.2.0 → v4.2.1 ) ([5405ab1](https://github.com/ivuorinen/base-configs/commit/5405ab1a24f434c6bf81274a0cac1d4e13ce359f))
* **github-action:** update actions/checkout ( v4.2.1 → v4.2.2 ) ([#300](https://github.com/ivuorinen/base-configs/issues/300)) ([f9b4d64](https://github.com/ivuorinen/base-configs/commit/f9b4d64a61ba60a1efc398c699bdf7ee610c4070)) - **github-action:** update actions/checkout ( v4.2.1 → v4.2.2 ) ([#300](https://github.com/ivuorinen/base-configs/issues/300)) ([f9b4d64](https://github.com/ivuorinen/base-configs/commit/f9b4d64a61ba60a1efc398c699bdf7ee610c4070))
* **github-action:** update actions/setup-node ( v4.0.2 → v4.0.3 ) ([bd86a44](https://github.com/ivuorinen/base-configs/commit/bd86a4459d8f2d7c24b62674950d9e0af73d0b0d)) - **github-action:** update actions/setup-node ( v4.0.2 → v4.0.3 ) ([bd86a44](https://github.com/ivuorinen/base-configs/commit/bd86a4459d8f2d7c24b62674950d9e0af73d0b0d))
* **github-action:** update actions/setup-node ( v4.0.3 → v4.0.4 ) ([bfe244e](https://github.com/ivuorinen/base-configs/commit/bfe244e635316c89dc2e724dbaea21c5227457e2)) - **github-action:** update actions/setup-node ( v4.0.3 → v4.0.4 ) ([bfe244e](https://github.com/ivuorinen/base-configs/commit/bfe244e635316c89dc2e724dbaea21c5227457e2))
* **github-action:** update github/codeql-action (v3.29.0 → v3.29.2) ([#369](https://github.com/ivuorinen/base-configs/issues/369)) ([31bad16](https://github.com/ivuorinen/base-configs/commit/31bad165f4d53047d58fc6720405df6685c50b6d)) - **github-action:** update github/codeql-action (v3.29.0 → v3.29.2) ([#369](https://github.com/ivuorinen/base-configs/issues/369)) ([31bad16](https://github.com/ivuorinen/base-configs/commit/31bad165f4d53047d58fc6720405df6685c50b6d))
* **github-action:** update github/codeql-action (v3.29.2 → v3.29.3) ([#371](https://github.com/ivuorinen/base-configs/issues/371)) ([92c550a](https://github.com/ivuorinen/base-configs/commit/92c550aa28311ef7530ab2819d02ab93096b11cb)) - **github-action:** update github/codeql-action (v3.29.2 → v3.29.3) ([#371](https://github.com/ivuorinen/base-configs/issues/371)) ([92c550a](https://github.com/ivuorinen/base-configs/commit/92c550aa28311ef7530ab2819d02ab93096b11cb))
* **github-action:** update github/codeql-action (v3.29.3 → v3.29.4) ([#373](https://github.com/ivuorinen/base-configs/issues/373)) ([7f6c191](https://github.com/ivuorinen/base-configs/commit/7f6c1919de1c13987da36aeb0ff59afe6aaf9c36)) - **github-action:** update github/codeql-action (v3.29.3 → v3.29.4) ([#373](https://github.com/ivuorinen/base-configs/issues/373)) ([7f6c191](https://github.com/ivuorinen/base-configs/commit/7f6c1919de1c13987da36aeb0ff59afe6aaf9c36))
* **github-action:** update github/codeql-action (v3.29.4 → v3.29.5) ([#374](https://github.com/ivuorinen/base-configs/issues/374)) ([69d6d12](https://github.com/ivuorinen/base-configs/commit/69d6d12f9e87f26677f0389d4aa43b7858c67d3f)) - **github-action:** update github/codeql-action (v3.29.4 → v3.29.5) ([#374](https://github.com/ivuorinen/base-configs/issues/374)) ([69d6d12](https://github.com/ivuorinen/base-configs/commit/69d6d12f9e87f26677f0389d4aa43b7858c67d3f))
* **github-action:** update github/codeql-action (v3.29.5 → v3.29.8) ([#379](https://github.com/ivuorinen/base-configs/issues/379)) ([e4e8e49](https://github.com/ivuorinen/base-configs/commit/e4e8e496831aa3d7b1ea3a0752b5fe38f59c7173)) - **github-action:** update github/codeql-action (v3.29.5 → v3.29.8) ([#379](https://github.com/ivuorinen/base-configs/issues/379)) ([e4e8e49](https://github.com/ivuorinen/base-configs/commit/e4e8e496831aa3d7b1ea3a0752b5fe38f59c7173))
* **github-action:** update github/codeql-action (v3.29.8 → v3.29.9) ([#382](https://github.com/ivuorinen/base-configs/issues/382)) ([a08ab07](https://github.com/ivuorinen/base-configs/commit/a08ab0747e0fd0536e60cfb5c6b5bd96bce364cb)) - **github-action:** update github/codeql-action (v3.29.8 → v3.29.9) ([#382](https://github.com/ivuorinen/base-configs/issues/382)) ([a08ab07](https://github.com/ivuorinen/base-configs/commit/a08ab0747e0fd0536e60cfb5c6b5bd96bce364cb))
* **github-action:** update github/codeql-action (v3.29.9 → v3.29.10) ([#383](https://github.com/ivuorinen/base-configs/issues/383)) ([459c7f7](https://github.com/ivuorinen/base-configs/commit/459c7f7bcd42cbb0b2ea5d5dfbcf12f42cc31927)) - **github-action:** update github/codeql-action (v3.29.9 → v3.29.10) ([#383](https://github.com/ivuorinen/base-configs/issues/383)) ([459c7f7](https://github.com/ivuorinen/base-configs/commit/459c7f7bcd42cbb0b2ea5d5dfbcf12f42cc31927))
* **github-action:** update ivuorinen/actions (25.7.14 → 25.7.21) ([#372](https://github.com/ivuorinen/base-configs/issues/372)) ([fd8fabf](https://github.com/ivuorinen/base-configs/commit/fd8fabfa53b4b8435546439901aeb2d42a6f5342)) - **github-action:** update ivuorinen/actions (25.7.14 → 25.7.21) ([#372](https://github.com/ivuorinen/base-configs/issues/372)) ([fd8fabf](https://github.com/ivuorinen/base-configs/commit/fd8fabfa53b4b8435546439901aeb2d42a6f5342))
* **github-action:** update ivuorinen/actions (25.7.21 → 25.7.28) ([#375](https://github.com/ivuorinen/base-configs/issues/375)) ([1970856](https://github.com/ivuorinen/base-configs/commit/197085661a1507ec1e8cacb72318cf35d2566aa8)) - **github-action:** update ivuorinen/actions (25.7.21 → 25.7.28) ([#375](https://github.com/ivuorinen/base-configs/issues/375)) ([1970856](https://github.com/ivuorinen/base-configs/commit/197085661a1507ec1e8cacb72318cf35d2566aa8))
* **github-action:** update ivuorinen/actions (25.8.11 → 25.8.18) ([#384](https://github.com/ivuorinen/base-configs/issues/384)) ([98d6a11](https://github.com/ivuorinen/base-configs/commit/98d6a116fadfcffc0eedafb54958f8212696de52)) - **github-action:** update ivuorinen/actions (25.8.11 → 25.8.18) ([#384](https://github.com/ivuorinen/base-configs/issues/384)) ([98d6a11](https://github.com/ivuorinen/base-configs/commit/98d6a116fadfcffc0eedafb54958f8212696de52))
* **github-action:** update ivuorinen/actions (25.8.4 → 25.8.11) ([#381](https://github.com/ivuorinen/base-configs/issues/381)) ([8878ac9](https://github.com/ivuorinen/base-configs/commit/8878ac92cea21d8c9be97d2226eb6aee6e1becbf)) - **github-action:** update ivuorinen/actions (25.8.4 → 25.8.11) ([#381](https://github.com/ivuorinen/base-configs/issues/381)) ([8878ac9](https://github.com/ivuorinen/base-configs/commit/8878ac92cea21d8c9be97d2226eb6aee6e1becbf))
* **lerna:** lerna bootstrap commands ([b55c710](https://github.com/ivuorinen/base-configs/commit/b55c710adae12e4b9d670fb737a7c80ef9cf4898)) - **lerna:** lerna bootstrap commands ([b55c710](https://github.com/ivuorinen/base-configs/commit/b55c710adae12e4b9d670fb737a7c80ef9cf4898))
* **lerna:** updated lerna bootstrap commands ([99225f7](https://github.com/ivuorinen/base-configs/commit/99225f7f7ae54ff850c389b97c392c827327fa10)) - **lerna:** updated lerna bootstrap commands ([99225f7](https://github.com/ivuorinen/base-configs/commit/99225f7f7ae54ff850c389b97c392c827327fa10))
* **stylelint:** remove unknown unicorn/no-null ([063ad2f](https://github.com/ivuorinen/base-configs/commit/063ad2fc170ddf7a418fa0e04c2711931a4c2188)) - **stylelint:** remove unknown unicorn/no-null ([063ad2f](https://github.com/ivuorinen/base-configs/commit/063ad2fc170ddf7a418fa0e04c2711931a4c2188))
* update package.json and yarn.lock ([c84ea8e](https://github.com/ivuorinen/base-configs/commit/c84ea8e9629e2bfb5a7826f37ce503f3a35efe76)) - update package.json and yarn.lock ([c84ea8e](https://github.com/ivuorinen/base-configs/commit/c84ea8e9629e2bfb5a7826f37ce503f3a35efe76))
* 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))
* 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))
* 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))
* **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))
* **workflows:** tweak publish jobs run order ([bbbbdf0](https://github.com/ivuorinen/base-configs/commit/bbbbdf049f9d954e9cbabd6644fb207b06ea0908)) - **workflows:** tweak publish jobs run order ([bbbbdf0](https://github.com/ivuorinen/base-configs/commit/bbbbdf049f9d954e9cbabd6644fb207b06ea0908))
### Features ### Features
* add `eslint-config-prettier` ([1a40d9b](https://github.com/ivuorinen/base-configs/commit/1a40d9b0ada76d32a8fe34d2a0eb98856f678dee)) - add `eslint-config-prettier` ([1a40d9b](https://github.com/ivuorinen/base-configs/commit/1a40d9b0ada76d32a8fe34d2a0eb98856f678dee))
* add c2corg/browserslist-update-action ([#313](https://github.com/ivuorinen/base-configs/issues/313)) ([89bae3f](https://github.com/ivuorinen/base-configs/commit/89bae3f8a57e154e9fb2da4d2002173f1f996517)) - add c2corg/browserslist-update-action ([#313](https://github.com/ivuorinen/base-configs/issues/313)) ([89bae3f](https://github.com/ivuorinen/base-configs/commit/89bae3f8a57e154e9fb2da4d2002173f1f996517))
* bump node engine to >=20 ([3dbff76](https://github.com/ivuorinen/base-configs/commit/3dbff768c882dc12d01ac8eed6c70ae545db0e76)) - bump node engine to >=20 ([3dbff76](https://github.com/ivuorinen/base-configs/commit/3dbff768c882dc12d01ac8eed6c70ae545db0e76))
* **config-checker:** new package: config-checker ([9d37249](https://github.com/ivuorinen/base-configs/commit/9d372493e844694781877cd4853d87198590a0ad)) - **config-checker:** new package: config-checker ([9d37249](https://github.com/ivuorinen/base-configs/commit/9d372493e844694781877cd4853d87198590a0ad))
* **deps:** Dropped prettier from eslint configs ([fe71bf6](https://github.com/ivuorinen/base-configs/commit/fe71bf6c4127bfcbcbacbb6962bfd5b64b8de4c1)) - **deps:** Dropped prettier from eslint configs ([fe71bf6](https://github.com/ivuorinen/base-configs/commit/fe71bf6c4127bfcbcbacbb6962bfd5b64b8de4c1))
* drop workspaces, use fs packages to cleanup ([40505b8](https://github.com/ivuorinen/base-configs/commit/40505b88ab863366140104a5877008db1d399448)) - drop workspaces, use fs packages to cleanup ([40505b8](https://github.com/ivuorinen/base-configs/commit/40505b88ab863366140104a5877008db1d399448))
* **github-action:** update actions/cache ( v4.0.2 → v4.1.0 ) ([41e71bb](https://github.com/ivuorinen/base-configs/commit/41e71bbc3c82a09d7144e2ff9061ef468e11c0b5)) - **github-action:** update actions/cache ( v4.0.2 → v4.1.0 ) ([41e71bb](https://github.com/ivuorinen/base-configs/commit/41e71bbc3c82a09d7144e2ff9061ef468e11c0b5))
* **github-action:** update actions/cache (v4.1.2 → v4.2.0) ([#311](https://github.com/ivuorinen/base-configs/issues/311)) ([25b9569](https://github.com/ivuorinen/base-configs/commit/25b9569c730504f52c38affb80d893f226d5f2ce)) - **github-action:** update actions/cache (v4.1.2 → v4.2.0) ([#311](https://github.com/ivuorinen/base-configs/issues/311)) ([25b9569](https://github.com/ivuorinen/base-configs/commit/25b9569c730504f52c38affb80d893f226d5f2ce))
* **github-action:** update actions/checkout ( v4.1.7 → v4.2.0 ) ([02c930d](https://github.com/ivuorinen/base-configs/commit/02c930d54ae4f7578424c5947285379f1f9cc49c)) - **github-action:** update actions/checkout ( v4.1.7 → v4.2.0 ) ([02c930d](https://github.com/ivuorinen/base-configs/commit/02c930d54ae4f7578424c5947285379f1f9cc49c))
* **github-action:** update actions/setup-node ( v4.0.4 → v4.1.0 ) ([554f651](https://github.com/ivuorinen/base-configs/commit/554f651a8f86a449920ff15046aa02f8a5a98766)) - **github-action:** update actions/setup-node ( v4.0.4 → v4.1.0 ) ([554f651](https://github.com/ivuorinen/base-configs/commit/554f651a8f86a449920ff15046aa02f8a5a98766))
* **github-action:** update actions/setup-node (v4.1.0 → v4.2.0) ([#328](https://github.com/ivuorinen/base-configs/issues/328)) ([126fa15](https://github.com/ivuorinen/base-configs/commit/126fa1589d1656583191e89e7bd7be6dc5080015)) - **github-action:** update actions/setup-node (v4.1.0 → v4.2.0) ([#328](https://github.com/ivuorinen/base-configs/issues/328)) ([126fa15](https://github.com/ivuorinen/base-configs/commit/126fa1589d1656583191e89e7bd7be6dc5080015))
* **github-action:** update actions/setup-node (v4.2.0 → v4.3.0) ([#347](https://github.com/ivuorinen/base-configs/issues/347)) ([aad3de0](https://github.com/ivuorinen/base-configs/commit/aad3de0ee066c1c9df5196cca2b91e3306458d88)) - **github-action:** update actions/setup-node (v4.2.0 → v4.3.0) ([#347](https://github.com/ivuorinen/base-configs/issues/347)) ([aad3de0](https://github.com/ivuorinen/base-configs/commit/aad3de0ee066c1c9df5196cca2b91e3306458d88))
* **github-action:** update actions/setup-node (v4.3.0 → v4.4.0) ([#352](https://github.com/ivuorinen/base-configs/issues/352)) ([e6cbf1b](https://github.com/ivuorinen/base-configs/commit/e6cbf1bedf82c709edb31b4d714cfb7ccba1c712)) - **github-action:** update actions/setup-node (v4.3.0 → v4.4.0) ([#352](https://github.com/ivuorinen/base-configs/issues/352)) ([e6cbf1b](https://github.com/ivuorinen/base-configs/commit/e6cbf1bedf82c709edb31b4d714cfb7ccba1c712))
* **github-action:** update actions/stale (v9.0.0 → v9.1.0) ([#326](https://github.com/ivuorinen/base-configs/issues/326)) ([90a0c60](https://github.com/ivuorinen/base-configs/commit/90a0c607c8927c052b99a02dfc770c64dfd440ce)) - **github-action:** update actions/stale (v9.0.0 → v9.1.0) ([#326](https://github.com/ivuorinen/base-configs/issues/326)) ([90a0c60](https://github.com/ivuorinen/base-configs/commit/90a0c607c8927c052b99a02dfc770c64dfd440ce))
* **github-action:** update ivuorinen/actions (25.6.23 → 25.7.14) ([#370](https://github.com/ivuorinen/base-configs/issues/370)) ([1f5015e](https://github.com/ivuorinen/base-configs/commit/1f5015e47042d92b119983e2232773d10847d6dc)) - **github-action:** update ivuorinen/actions (25.6.23 → 25.7.14) ([#370](https://github.com/ivuorinen/base-configs/issues/370)) ([1f5015e](https://github.com/ivuorinen/base-configs/commit/1f5015e47042d92b119983e2232773d10847d6dc))
* **github-action:** update ivuorinen/actions (25.7.28 → 25.8.4) ([#377](https://github.com/ivuorinen/base-configs/issues/377)) ([aa07af3](https://github.com/ivuorinen/base-configs/commit/aa07af367500ffd5970c9c1d555a0d207278fd2a)) - **github-action:** update ivuorinen/actions (25.7.28 → 25.8.4) ([#377](https://github.com/ivuorinen/base-configs/issues/377)) ([aa07af3](https://github.com/ivuorinen/base-configs/commit/aa07af367500ffd5970c9c1d555a0d207278fd2a))
* **npm:** testing workspaces ([7d9d749](https://github.com/ivuorinen/base-configs/commit/7d9d749425ca0c56422696ed98bb487c3f0fdb38)) - **npm:** testing workspaces ([7d9d749](https://github.com/ivuorinen/base-configs/commit/7d9d749425ca0c56422696ed98bb487c3f0fdb38))
* **package:** new pkg: @ivuorinen/base-configs ([#121](https://github.com/ivuorinen/base-configs/issues/121)) ([feddfcf](https://github.com/ivuorinen/base-configs/commit/feddfcfdba391f8ed4bf59589737a340401e4fba)) - **package:** new pkg: @ivuorinen/base-configs ([#121](https://github.com/ivuorinen/base-configs/issues/121)) ([feddfcf](https://github.com/ivuorinen/base-configs/commit/feddfcfdba391f8ed4bf59589737a340401e4fba))
* release pipeline, packages, yarn upgrade ([5400c02](https://github.com/ivuorinen/base-configs/commit/5400c02639d027ee73fef887fbc6c2ce906ec7ad)) - release pipeline, packages, yarn upgrade ([5400c02](https://github.com/ivuorinen/base-configs/commit/5400c02639d027ee73fef887fbc6c2ce906ec7ad))
* 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))
### BREAKING CHANGES ### BREAKING CHANGES
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* this changes the configuration format, - this changes the configuration format, also adds support for module, and commonjs types
also adds support for module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types - support module, and commonjs types
* support module, and commonjs types
# Change Log # Change Log

View File

@@ -32,7 +32,7 @@ yarn add @ivuorinen/base-configs --dev
## Available Configurations ## Available Configurations
| Tool | Package | Version | | Tool | Package | Version |
|-------------------------------------------|----------------------------------------------------|---------------------------------------------------------------------------------------| | ----------------------------------------- | -------------------------------------------------- | ------------------------------------------------------------------------------------- |
| [Browserslist][browserslist-link] | [@ivuorinen/browserslist-config][pkg-browserlist] | [![@ivuorinen/browserslist-config][browserslist-badge]][browserslist-npm] | | [Browserslist][browserslist-link] | [@ivuorinen/browserslist-config][pkg-browserlist] | [![@ivuorinen/browserslist-config][browserslist-badge]][browserslist-npm] |
| [CommitLint][commitlint-link] | [@ivuorinen/commitlint-config][pkg-commitlint] | [![@ivuorinen/commitlint-config][commitlint-badge]][commitlint-npm] | | [CommitLint][commitlint-link] | [@ivuorinen/commitlint-config][pkg-commitlint] | [![@ivuorinen/commitlint-config][commitlint-badge]][commitlint-npm] |
| [ESLint][eslint-link] | [@ivuorinen/eslint-config][pkg-eslint] | [![@ivuorinen/eslint-config][eslint-badge]][eslint-npm] | | [ESLint][eslint-link] | [@ivuorinen/eslint-config][pkg-eslint] | [![@ivuorinen/eslint-config][eslint-badge]][eslint-npm] |