Skip to content

Releases: Boehringer-Ingelheim/eslint-config

v8.0.0-defineConfig.2

04 Sep 15:15

Choose a tag to compare

v8.0.0-defineConfig.2 Pre-release
Pre-release

8.0.0-defineConfig.2 (2025-09-04)

Features

  • eslint: migrate from tseslint.config to eslint.defineConfig (fa25e0c)

Reverts

  • "feat(eslint): migrate from tseslint.config to eslint.defineConfig" (2017fbd)

BREAKING CHANGES

  • eslint: The boehringer.config(...) utility function has been removed in favor of ESLint core’s defineConfig(...). Replace boehringer.config(...) with defineConfig(...) from eslint/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

04 Sep 12:01

Choose a tag to compare

v8.0.0-defineConfig.1 Pre-release
Pre-release

8.0.0-defineConfig.1 (2025-09-04)

Features

  • deps: update dependencies (b699e7a)
  • eslint: migrate from tseslint.config to eslint.defineConfig (9afc0c4)

BREAKING CHANGES

  • eslint: The config(...) utility function has been removed in favor of ESLint core’s defineConfig(...). Replace boehringer.config(...) with boehringer.defineConfig(...)
  • deps: Remove support for ESLint v8; minimum required version is now ESLint v9.34.0. Update your dependencies to use ESLint 9.34.0 or newer.

v7.4.0

24 Jul 13:02

Choose a tag to compare

7.4.0 (2025-07-24)

Features

  • deps: update dependencies (1e896ba)

v7.3.1

16 Jul 13:06

Choose a tag to compare

7.3.1 (2025-07-16)

Bug Fixes

  • base: remove redundant no-empty-function rule from base config (afdfd62)

v7.3.0

19 Feb 11:28

Choose a tag to compare

7.3.0 (2025-02-19)

Bug Fixes

  • destructure includeIgnoreFile import (ae75bc5)

Features

  • deps: update dependencies (8a670a7)
  • lib: add includeIgnoreFile to support including .gitignore in ESLint configuration (e78806a)

v7.3.0-include-ignore-file.2

17 Feb 21:50

Choose a tag to compare

Pre-release

7.3.0-include-ignore-file.2 (2025-02-17)

Bug Fixes

  • destructure includeIgnoreFile import (ae75bc5)

v7.3.0-include-ignore-file.1

17 Feb 21:34

Choose a tag to compare

Pre-release

7.3.0-include-ignore-file.1 (2025-02-17)

Features

  • deps: update dependencies (8a670a7)
  • lib: add includeIgnoreFile to support including .gitignore in ESLint configuration (e78806a)

v7.2.0

14 Feb 15:37

Choose a tag to compare

7.2.0 (2025-02-14)

Features

  • playwright: disable unbound-method rule for component testing compatibility (47349c9)

v7.2.0-support-playwright-ct.1

14 Feb 13:18

Choose a tag to compare

Pre-release

7.2.0-support-playwright-ct.1 (2025-02-14)

Features

  • playwright: disable unbound-method rule for component testing compatibility (47349c9)

v7.1.0

04 Feb 12:37

Choose a tag to compare

7.1.0 (2025-02-04)

Bug Fixes

  • config: [base] update test file patterns to only match javascript files (478ec71)

Features

  • deps: update dependencies (8bc20e7)