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

@cleverage/eslint-config

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cleverage/eslint-config

eslint config for Clever Age projects

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

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

@cleverage/eslint-config

Clever Age javaScript coding style guide.

This config depends on Airbnb coding style guide.

Install

Using NPM:

npm install --save-dev @cleverage/eslint-config

Using Yarn:

yarn add --dev @cleverage/eslint-config

Install Peer Dependencies

Clever Age eslint config need some peer dependencies mainly inherited from AirBnB config. To install it you have to run this command:

npx install-peerdeps --dev @cleverage/eslint-config

Add this to your your .eslintrc.js:

{
  "extends": "@cleverage"
}

Differences with airBnB config

no-multiple-empty-lines

'no-multiple-empty-lines': [1, { max: 1, maxEOF: 1, maxBOF: 0 }],

AirBnB’s rules allow 2 successive empty lines but the purpose of a linter is to avoid human debates when reviewing code. To avoid debates on 1 or 2 empty lines, we choose to limit to one only empty line everywhere.

padding-line-between-statements

'padding-line-between-statements': [
  'error',
  { blankLine: 'always', prev: '*', next: 'return' },
  { blankLine: 'always', prev: 'import', next: '*' },
  { blankLine: 'never', prev: 'import', next: 'import' },
],

AirBnB set this rule to off. We prefer set it to:

  • not have blank line between import,
  • always separate import lines from rest of code by one blank line.
  • always precede return statement by a blank line if not alone in the code block.

Keywords

FAQs

Package last updated on 28 Jan 2019

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