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

eslint-tools-m6web

Package Overview
Dependencies
Maintainers
7
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-tools-m6web

Tooling for eslint and prettier used in m6web projects

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

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

Eslint-tools-m6web

The purpose of this package is simple, simplify the configuration of eslint and prettier in our projects.

It provides:

  • eslint-config-m6web which inherits from eslint-config-airbnb
  • eslint itself
  • prettier with all the plugins needed to work with eslint

With that come some little changes from the default config of eslint-config-airbnb and prettier that you can find in .eslintrc file and here.

Setup

npm install --dev eslint-tools-m6web

or

yarn add --dev eslint-tools-m6web

Then you need to inherit the config in the .eslintrc file of your project. For that create a .eslintrc and add the following lines:

{
  "extends": "./node_modules/eslint-tools-m6web/.eslintrc"
}

And that's all.

If you want to customize some rules, follow the eslint documentation.

Jest / Jasmine Support

If you want, you can add the jest support with the following lines:

{
  "env": {
    "browser": true,
    "jasmine": true
  }
}

Usage

Lint your code:

yarn eslint src/

Rewrite your code, the right way :smiling_imp::

yarn prettier-eslint -- --write 'src/**/*.js'

FAQs

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