Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

chore(deps): Update dependency eslint-config-seek to v11.x #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-config-seek ^4.0.0 -> ^11.0.0 age adoption passing confidence

Release Notes

seek-oss/eslint-config-seek (eslint-config-seek)

v11.3.1

Compare Source

Patch Changes
  • Add a temporary override until everybody removes the React import (#​122)

v11.3.0

Compare Source

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

Compare Source

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

Compare Source

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

v11.1.3

Compare Source

Patch Changes
  • Fix broken custom eslint rule (#​111)

v11.1.2

Compare Source

Patch Changes
  • Replace eslint-plugin-cypress with the [@finsit/eslint-plugin-cypress][@​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

Compare Source

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

Compare Source

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

Compare Source

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

v11.0.0

Compare Source

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

v10.3.0

Compare Source

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"
    }

v10.2.0

Compare Source

Minor Changes
  • Enable linting for more extensions: .cjs, .mjs, .cts, .mts (#​90)
Patch Changes
  • Update dependencies (#​91)

v10.1.3

Compare Source

Patch Changes
  • Dependency bumps (Babel, ESLint, TypeScript) (#​88)

v10.1.2

Compare Source

Patch Changes
  • Allow the cypress folder to be nested (#​86)

v10.1.1

Compare Source

Patch Changes

v10.1.0

Compare Source

Minor Changes
  • Enhanced TypeScript support for eslint-plugin-import via eslint-import-resolver-typescript (#​81)

    This means you can:

    • import/require files with extension .cts/.mts/.ts/.tsx/.d.cts/.d.mts/.d.ts
    • Use paths defined in tsconfig.json
    • Prefer resolving @types/* definitions over plain .js/.jsx
    • Multiple tsconfigs support just like normal (i.e. in a monorepo)
    • imports/exports fields support in package.json
Patch Changes
  • Fixed TypeScript support for eslint-plugin-import (#​81)

    Some rules provided by eslint-plugin-import (e.g. import/no-duplicates, import/order) don't work or work incorrectly without it.

    Before — passes:

    import { ComponentDocs as InternalComponentDocs } from '@​monorepo/docs';
    import braidSnippets from 'braid-design-system/lib/playroom/snippets';
    import { Snippets } from 'playroom';
    import reactElementToJsxString from 'react-element-to-jsx-string';

    After — correctly identifies @monorepo/docs as internal (as defined in sku) and moves it after the external imports:

    import braidSnippets from 'braid-design-system/lib/playroom/snippets';
    import { Snippets } from 'playroom';
    import reactElementToJsxString from 'react-element-to-jsx-string';
    
    import { ComponentDocs as InternalComponentDocs } from '@​monorepo/docs';
  • Upgrade dependencies (#​81)

v10.0.0

Compare Source

Major Changes
  • eslint-plugin-jest 27 (#​79)

    This major release includes breaking changes. See the release note for more information.

    The jest/no-alias-methods rule is now enforced to discourage usage of alias methods that will be removed in Jest 30.

    - .toBeCalled()
    + .toHaveBeenCalled()

v9.0.0

Compare Source

Major Changes
  • Support ESLint 8.x (#​73)

    We've upgraded the parsers and plugins bundled in eslint-config-seek for ESLint 8.x compatibility. Some linting rules have changed and may require manual triage. In particular, we've applied the following major upgrades:

    eslint-plugin-cypress is currently incompatible with ESLint 8.x. Projects that utilise Cypress should remain on ESLint 7.x.

Minor Changes

v8.0.0

Compare Source

Major Changes
  • Remove support for Flow (#​64)

    SEEK has aligned on TypeScript for static type checking. Flow support was similarly removed in sku 11.

    Affected projects should migrate to TypeScript.

  • Remove support for CSS Modules (#​64)

    eslint-plugin-css-modules is unmaintained, and SEEK has since moved on to vanilla-extract.

    Affected projects should migrate to vanilla-extract.

Patch Changes
  • Detect the react version (#​68)

v7.0.9

Compare Source

Bug Fixes

v7.0.8

Compare Source

Bug Fixes
  • Disable non-ts no-use-before-define in .ts files (#​57) (98b2320)

v7.0.7

Compare Source

Bug Fixes

v7.0.6

Compare Source

Bug Fixes

v7.0.5

Compare Source

Bug Fixes

v7.0.4

Compare Source

Bug Fixes

v7.0.3

Compare Source

Bug Fixes

v7.0.2

Compare Source

Bug Fixes

v7.0.1

Compare Source

Bug Fixes

v7.0.0

Compare Source

Bug Fixes
BREAKING CHANGES
  • deps: Drops support for Node 8
  • deps: Drops support for TypeScript 3.2
  • deps: Requires TypeScript as a peer dep

v6.0.2

Compare Source

Bug Fixes

v6.0.1

Compare Source

Bug Fixes
  • TypeScript: Allow inferrable parameter types (#​48) (2a27bc0)

v6.0.0

Compare Source

Features
BREAKING CHANGES
  • Builds are now likely to fail linting because of the new arrow rule. Can be auto-fixed using eslint "path/to/files" --fix or, in sku, yarn format

v5.0.5

Compare Source

Bug Fixes

v5.0.4

Compare Source

Bug Fixes

v5.0.3

Compare Source

Bug Fixes

v5.0.2

Compare Source

Bug Fixes

v5.0.1

Compare Source

Bug Fixes

v5.0.0

Compare Source

Features
BREAKING CHANGES
  • Updated React rules to suit common practices
  • Removed some more restrictive rules
  • Moved jest specific rules to only target test files (e.g. thing.test.js, other.spec.ts)
  • Moved cypress specific rules to only target files within a top-level cypress folder

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants