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

eslint-config-nvs

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-nvs

ESLint shareable config used by Netvlies

  • 0.1.4
  • latest
  • Source
  • npm
  • Socket score

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

eslint-config-nvs

This package provides a ESLint shareable config for the Netvlies's JS coding style.

Installation

To make use of this config, install ESLint and this package as a development dependency of your project:

npm install eslint eslint-config-nvs --save-dev

Usage

Create a .eslintrc.* config file:

.eslintrc.js

module.exports = {
  extends: 'nvs'
};

.eslintrc.json

{
  "extends": "nvs"
}

Or add the ESLint config to your package.json:

{
  "name": "project",
  "eslintConfig": {
    "extends": "nvs"
  }
}

Configuration

The default configuration supports ES2015 (ES6) code.

Legacy code

If you need to support legacy code, you can use the nvs/legacy config:

{
  "extends": "nvs/legacy"
}

Update & Publish to NPM

npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease | from-git]

npm publish

Changelog

Read the Changelog

License

MIT © Netvlies

FAQs

Package last updated on 18 Apr 2017

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