Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-seek

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-seek - npm Package Versions

1
10

10.3.0

Diff

Changelog

Source

10.3.0

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"
    }
    
seek-oss-ci
published 10.2.0 •

Changelog

Source

10.2.0

Minor Changes

  • Enable linting for more extensions: .cjs, .mjs, .cts, .mts (#90)

Patch Changes

  • Update dependencies (#91)
seek-oss-ci
published 10.1.3 •

Changelog

Source

10.1.3

Patch Changes

  • Dependency bumps (Babel, ESLint, TypeScript) (#88)
seek-oss-ci
published 10.1.2 •

Changelog

Source

10.1.2

Patch Changes

  • Allow the cypress folder to be nested (#86)
seek-oss-ci
published 10.1.1 •

Changelog

Source

10.1.1

Patch Changes

  • Re-added missing no-undef rule for .js/.jsx files (#84)
seek-oss-ci
published 10.1.0 •

Changelog

Source

10.1.0

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)

seek-oss-ci
published 0.0.0-typescript-config-20221028024455 •

seek-oss-ci
published 10.0.0 •

Changelog

Source

10.0.0

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()
    
seek-oss-ci
published 9.0.0 •

Changelog

Source

9.0.0

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

seek-oss-ci
published 9.0.0-beta.0 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc