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

eslint-config-netguru-ember

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-netguru-ember

Eslint config for Netguru Ember Style Guide

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

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

eslint-config-netguru-ember

ESlint shareable config for eslint-plugin-netguru-ember

Summary

It's a shareable config that extends AirBnB Config with rules from our eslint-plugin-netguru-ember. This is recommended by us config for any Ember Application. It assures that your code is in great shape and that you're following all good standards from AirBnB's JavaScript Styleguide and our Ember Styleguide.

Requirements

You need to have ember-cli-eslint installed in your app. More info here.

Usage

1. Install all dependencies by simply pasting code below in your terminal
(
  export PKG=eslint-config-netguru-ember;
  npm info "$PKG" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG"
)

This command will basically produce and call something like this:

npm install --save-dev eslint-config-netguru-ember eslint-plugin-netguru-ember@1.x eslint-config-airbnb-base@^7.1.0 eslint-plugin-import@^1.15.0
2. Change your .eslintrc, so it looks like this:
  extends: netguru-ember

You can find more informations about rules we provide here.

All rules and settings from index.js can be overriden in your .eslintrc. So if you for example want to disable the rule netguru-ember/local-modules your .eslintrc should look like this:

  extends: netguru-ember
  rules:
    netguru-ember/local-modules: 0

Keywords

FAQs

Package last updated on 20 Nov 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