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

eslint-config-habitrpg

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-habitrpg

Eslint config for HabitRPG projects

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

habitrpg-eslint-config

Shared linting configuration for HabitRPG, Inc projects.

  • index.js: base configuration
  • server.js: special rules for code on the server
  • browser.js: special rules for code on the browser
  • es6.js: special rules for es6 code
  • babel.js: inherits from es6 and adds babel specific rules
  • mocha.js: special rules for the moch test framework

Consuming

Install the module

npm i -D habitrpg-eslint-config

In your project's .eslintrc:

default

{
  "extends": "habitrpg",
  "rules": {
    "locally-overriden-rule": 1
  }
}

browser/browserify

{
  "extends": "habitrpg/browser",
  "rules": {
    "locally-overriden-rule": 1
  }
}

mocha

Note: The mocha config requires you to install eslint-plugin-mocha

npm install -D eslint-plugin-mocha eslint-config-habitrpg
{
  "extends": "habitrpg/mocha",
  "rules": {
    "locally-overriden-rule": 1
  }
}

browserify + babel

Note: The babel config requires you to install eslint-plugin-babel and babel-eslint

npm install -D eslint-plugin-babel babel-eslint eslint-config-habitrpg
{
  "extends": [
    "habitrpg/browser",
    "habitrpg/babel"
  ],
  "rules": {
    "locally-overriden-rule": 1
  }
}

You can specify a .eslintrc for a subdirectory to change the rules that are enforced. For instance, in a node project you could extend from habitrpg/server at the top-level, habitrpg/mocha in your test/.eslintrc and habitrpg/browser at the browser-files/.eslintrc level.

Keywords

FAQs

Package last updated on 20 Apr 2016

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