Skip to content

Releases: seek-oss/eslint-config-seek

v11.3.0

06 Jul 23:54
8644977

Choose a tag to compare

Minor Changes

Patch Changes

  • Update dependencies (#120)

  • Disable resolving node_modules from the root of the repo. This is problematic for JavaScript-only monorepos (where there are multiple node_modules directories). (#119)

  • Add a workaround for TypeScript-ESLint slowness with TypeScript 5.1 (#117)

v11.2.1

07 Jun 01:16
6a76425

Choose a tag to compare

Patch Changes

  • Remove autofix for custom unsafe-to-chain-command rule (#115)

    The autofix for this rule didn't exactly adhere to the recommendation in the cypress docs,
    and would've required additional complexity and user-configuration to do so, so the decision was made to remove it.

v11.2.0

06 Jun 04:40
9a113d2

Choose a tag to compare

Minor Changes

  • Add autofix for custom unsafe-to-chain-command rule (#113)

v11.1.3

05 Jun 04:26
3a2f862

Choose a tag to compare

Patch Changes

  • Fix broken custom eslint rule (#111)

v11.1.2

25 May 04:07
80e87af

Choose a tag to compare

Patch Changes

  • Replace eslint-plugin-cypress with the @finsit/eslint-plugin-cypress fork that supports ESLint v8. (#106)
    Consumers that were overriding cypress/* rules will need to override @finsit/cypress/* rules instead.

v11.1.1

14 May 23:51
9588493

Choose a tag to compare

Patch Changes

  • Move the Babel React preset parser option from the "base" configuration to the "default" configuration. (#103)

    This update contains no functional changes to the "default" configuration.

v11.1.0

02 May 01:47
c1fe123

Choose a tag to compare

Minor Changes

  • Export extensions linted by the config (#101)

    They are now available under the /extensions entry point:

    const { js, ts } = require('eslint-config-seek/extensions');
    // js: ['js', 'cjs', 'mjs', 'jsx']
    // ts: ['ts', 'cts', 'mts', 'tsx']

Patch Changes

  • Fix resolution of @babel/preset-react (#100)

v11.0.1

24 Apr 01:47
ff6a82b

Choose a tag to compare

Patch Changes

  • Update parserOptions.project for TypeScript files to be true. (#98)

v11.0.0

21 Apr 00:53
9d1f846

Choose a tag to compare

Major Changes

  • Add additional rules enforcing consistent type imports/exports (#96)

v10.3.0

17 Apr 00:39
3a39444

Choose a tag to compare

Minor Changes

  • Split config into default (current) and base (without a React dependency). (#94)

    Without React support:

    {
      "extends": "seek/base"
    }

    With React support:

    {
      "extends": "seek"
    }