Skip to content

gnodi/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@gnodi/eslint-config

[Node.js] Lint your code like gnodi!

Build Version Downloads Dependencies Dev Dependencies

## Installation

Run the following command to add the package to your dev dependencies:

$ npm install --save-dev @gnodi/eslint-config

## Use

Use gnodi lint helper script

Add the following line to your package.json:

...
"scripts": {
  ...
  "lint": "gnodi-lint"
}
...

Then, you can immediately run the lint:

$ npm run lint

Add custom checked glob

By default, only js files from directories ., bin, config, lib, src and test are processed. You can add your own custom directories/files/globs passing it as arguments to your command gnodi-lint:

...
"scripts": {
  ...
  "lint": "gnodi-lint dist/bundle.js build/**/*.js"
}
...

Override with custom rules

You can override some rules with your own ones just using a standard .eslintrc:

{
  "extends": "@gnodi",
  "rules": {
    "comma-dangle": ["error", "always"]
  }
}

LICENSE

MIT