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

eslint-config-biome

Package Overview
Dependencies
Maintainers
1
Versions
21
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

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
14K
decreased by-49.11%
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 "biome" as the last item in the extends field.

    {
      "extends": [
        "other-configs",
        "biome"
      ]
    }
    
  • 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 [
      otherConfigs,
      eslintConfigBiome,
    ];
    

ℹ️ Info

  • In your .eslintrc, you can instead have this in overrides:

    "overrides": [{
      files: ["*.ts", "*.js", "*.tsx", "*.jsx"],
      extends: ["biome"],
    }],
    
    • Being it the last item in the array, this makes other existing overrides to have this patch applied. This also overrides any rules that may lie in the root of your .eslintrc under rules.
  • You should use it together with eslint-config-prettier so formatting rules are also disabled as Biome has almost 100% compatibility with prettier. It may eventually be integrated into this package, so you won't need to also install it.

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

    "editor.codeActionsOnSave": {
      "source.fixAll.eslint": "explicit",
      "source.organizeImports.biome": "explicit",
      "quickfix.biome": "explicit"
    },
    "editor.defaultFormatter": "biomejs.biome"
    
  • Soon there will be a npx tool to disable ESLint rules based on your biome config file, so non-recommended biome rules will also be considered.

This package had its origin in this discussion. Thanks DaniGuardiola for your initial code!

📰 Changelog

Keywords

FAQs

Package last updated on 23 Dec 2023

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