New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-noir

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-noir

Noir ESLint shareable config

  • 1.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-88.89%
Maintainers
1
Weekly downloads
 
Created
Source

eslint-config-noir

Test Npm Version License Pull Requests Known Vulnerabilities Npm Total Downloads Npm Monthly Downloads Github Stars Github Forks

Noir ESLint shareable config.

Installation

You'll first need to install ESLint:

npm i -D eslint

Next, install eslint-config-noir:

npm i -D eslint-config-noir

Usage

Add noir to the extends section of your .eslintrc configuration file. You can omit the eslint-config- prefix:

{
  "extends": [
    "eslint:recommended",
    "noir"
  ]
}

With Import support:

You'll first need to install Import ESLint Plugin.

{
  "extends": [
    "eslint:recommended",
    "noir",
    "plugin:@typescript-eslint/recommended",
    "plugin:import/recommended",
    "noir/import"
  ]
}

With TypeScript support:

You'll first need to install TypeScript ESLint.

{
  "extends": [
    "eslint:recommended",
    "noir",
    "plugin:@typescript-eslint/recommended",
    "noir/typescript"
  ]
}

Or all of the configs at once:

{
  "extends": "noir/all"
}

Keywords

FAQs

Package last updated on 16 Sep 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