Releases: Boehringer-Ingelheim/eslint-config
Releases · Boehringer-Ingelheim/eslint-config
v8.0.0-defineConfig.2
8.0.0-defineConfig.2 (2025-09-04)
Features
- eslint: migrate from
tseslint.configtoeslint.defineConfig(fa25e0c)
Reverts
- "feat(eslint): migrate from
tseslint.configtoeslint.defineConfig" (2017fbd)
BREAKING CHANGES
- eslint: The
boehringer.config(...)utility function has been removed in favor of ESLint core’sdefineConfig(...). Replaceboehringer.config(...)withdefineConfig(...)fromeslint/config
import boehringer from '@boehringer-ingelheim/eslint-config';
+ import { defineConfig } from 'eslint/config';
- export default boehringer.config(
+ export default defineConfig(
boehringer.configs.strict,
{
rules: {
'no-empty-function': 'off',
},
}
);v8.0.0-defineConfig.1
8.0.0-defineConfig.1 (2025-09-04)
Features
- deps: update dependencies (b699e7a)
- eslint: migrate from
tseslint.configtoeslint.defineConfig(9afc0c4)
BREAKING CHANGES
- eslint: The
config(...)utility function has been removed in favor of ESLint core’sdefineConfig(...). Replaceboehringer.config(...)withboehringer.defineConfig(...) - deps: Remove support for ESLint
v8; minimum required version is now ESLintv9.34.0. Update your dependencies to use ESLint9.34.0or newer.
v7.4.0
v7.3.1
v7.3.0
v7.3.0-include-ignore-file.2
v7.3.0-include-ignore-file.1
7.3.0-include-ignore-file.1 (2025-02-17)
Features
v7.2.0
v7.2.0-support-playwright-ct.1
7.2.0-support-playwright-ct.1 (2025-02-14)
Features
- playwright: disable unbound-method rule for component testing compatibility (47349c9)