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

eslint-config-noise

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-noise

An opinionated [ESLint](https://github.com/eslint/eslint) config. There are many ways to [configure ESLint in the official documentation](https://eslint.org/docs/user-guide/configuring).

  • 0.18.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-73.33%
Maintainers
1
Weekly downloads
 
Created
Source

ESLint config noise

An opinionated ESLint config. There are many ways to configure ESLint in the official documentation.

Noise base config

Plugins

Install

npm install --save-dev eslint@^8.5 eslint-config-noise eslint-plugin-import@^2.25 eslint-plugin-promise@^6.0 eslint-plugin-unicorn@^40.0

Configure

.eslintrc

{ "extends": ["noise"] }

Extensions

Node

Plugins
Install

Make sure you have install the Noise base config.

npm install --save-dev eslint-plugin-node@^11.1
Configure

.eslintrc

{ "extends": ["noise", "noise/node"] }
Scripts

.eslintrc

{ "extends": ["noise", "noise/node/script"] }

React

Plugins
Install

Make sure you have install the Noise base config.

npm install --save-dev eslint-plugin-jsx-a11y@^6.4 eslint-plugin-react@^7.23 eslint-plugin-react-hooks@^4.2
Configure

.eslintrc

{ "extends": ["noise", "noise/browser", "noise/react"] }

TypeScript

Plugins
Install

Make sure you have install the Noise base config.

npm install --save-dev @typescript-eslint/eslint-plugin@^5.8 @typescript-eslint/parser@^5.8 eslint-import-resolver-typescript@^2.5
Configure

.eslintrc

{ "extends": ["noise", "noise/typescript"] }

Vue

Plugins
Install

Make sure you have install the Noise base config.

npm install --save-dev eslint-config-prettier@^6 eslint-plugin-vue@^4.5
Configure

.eslintrc

{ "extends": ["noise", "noise/vue", "noise/vue/ts"] }

Web-App

Many web apps are a combination of Node.js and browser directives. This presets combines much of the browser and node configs with some tweaks.

Plugins
Install

Make sure you have install the Noise base config.

npm install --save-dev eslint-plugin-node@^11.1
Configure

.eslintrc

{ "extends": ["noise", "noise/web-app"] }

Combining multiple extensions

You can combine multiple extensions by following the install step per extension and configure them together.

.eslintrc

{ "extends": ["noise", "noise/react", "noise/typescript"] }

You can use the ESLint config overrides option to have a more structured configuration.

You can combine multiple extensions by following the install step per extension and configure them together.

.eslintrc

{
  "extends": ["noise"],
  "overrides": [
    {
      "files": ["**/*.ts"],
      "extends": ["noise/typescript"]
    },
    {
      "files": ["**/*.{jsx,tsx}"],
      "extends": ["noise/react"]
    },
    {
      "files": ["**/*.vue"],
      "extends": ["noise/vue", "noise/vue/ts"]
    },
    {
      "files": ["server/src/**"],
      "extends": ["noise/node", "noise/typescript"]
    },
    {
      "files": ["scripts/**"],
      "extends": ["noise/node", "noise/node/scripts"]
    },
    {
      "files": ["web-app/src/**"],
      "extends": ["noise/web-app"]
    }
  ]
}

FAQs

Package last updated on 03 Jan 2022

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