Skip to content

v8.0.0-defineConfig.2

Pre-release
Pre-release

Choose a tag to compare

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',
    },
  }
);