Socket
Socket
Sign inDemoInstall

eslint-config-biome

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-biome

Disables ESLint rules that have a recommended and equivalent Biome rule


Version published
Weekly downloads
24K
increased by73.29%
Maintainers
1
Weekly downloads
 
Created
Source

logo

eslint-config-biome npm


💿 Installation

npm install -D eslint-config-biome # or your preferred package manager ;)
  • .eslintrc.*: Add the following as the last item in the "overrides" array. Create it if necessary.

    {
      "overrides": [
        // other overrides,
        {
          files: ["*.ts", "*.js", "*.tsx", "*.jsx"],
          extends: ["biome"],
        }
      ],
    }
    
  • Or eslint.config.js: Import eslint-config-biome and have it as the last item in the configuration array

    import eslintConfigBiome from "eslint-config-biome";
    
    export default [
      // other configs,
      eslintConfigBiome,
    ];
    

ℹ️ Info

  • In VSCode, to apply Biome and ESLint on save, you should have these in your project's .vscode/settings.json:

    {
      "editor.codeActionsOnSave": {
        "source.fixAll.eslint": "explicit",
        "source.organizeImports.biome": "explicit",
        "quickfix.biome": "explicit"
      },
      "editor.defaultFormatter": "biomejs.biome"
    }
    
  • For package.json scripts and CI, I recommend running biome before eslint for faster failure detection.

    "scripts": {
      "format:check": "biome check . && eslint .",
      "format": "biome check --apply-unsafe . && eslint --fix .",
    }
    
  • Since v1.4.0, this package includes eslint-config-prettier, so formatting rules are also disabled as Biome has almost full compatibility with prettier. Attribution. Its installation is no longer required and it can be removed from your project and your eslint config file.

  • This package had its origin in this discussion. Also, thanks DaniGuardiola for your initial code!

📰 Changelog

Keywords

FAQs

Package last updated on 12 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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