🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

eslint-plugin-modules

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-modules

ESLint rules for JavaScript modules (amd, es6, cjs, etc)

1.1.1
latest
Version published
Weekly downloads
58
141.67%
Maintainers
1
Weekly downloads
 
Created

eslint-plugin-modules

ESLint rules for JavaScript modules.

Installation

npm install --save-dev eslint-plugin-modules

Usage

Add the following to your .eslintrc file:

"plugins": [
  "modules"
]

Rules

All of these rules have to do with JavaScript modules in one way or another.

  • no-define - avoid AMD style define()
  • no-cjs - prefer es6 modules to CJS style require()
  • no-exports-typo - avoid typos in your module.exports
  • no-mix-default-named - disallow using both named and default es6 exports

FAQs

Package last updated on 13 Oct 2015

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