
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
@cleverage/eslint-config
Advanced tools
Clever Age javaScript coding style guide.
This config depends on Airbnb coding style guide.
Using NPM:
npm install --save-dev @cleverage/eslint-config
Using Yarn:
yarn add --dev @cleverage/eslint-config
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
.eslintrc.js
:{
"extends": "@cleverage"
}
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:
import
,import
lines from rest of code by one blank line.return
statement by a blank line if not alone in the code block.FAQs
eslint config for Clever Age projects
The npm package @cleverage/eslint-config receives a total of 1 weekly downloads. As such, @cleverage/eslint-config popularity was classified as not popular.
We found that @cleverage/eslint-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.