@omnious/eslint-config
v0.2.1
Published
ESLint shareable config for the Omnious JavaScript style guide
Downloads
6
Maintainers
Readme
Installation
# NPM
$ npm install --save-dev eslint @omnious/eslint-config
# Yarn
$ yarn add -D eslint @omnious/eslint-config
Usage
{
"extends": "@omnious",
"rules": {
// Additional, per-project rules...
}
}
Using the omnious
config with eslint:recommended
There are several rules in the eslint:recommended
ruleset that Omnious style is not opinionated about that you might want to enforce in your project.
To use Omnious style in conjunction with ESLint's recommended rule set, extend them both, making sure to list omnious
last:
{
"extends": ["eslint:recommended", "@omnious"],
"rules": {
// Additional, per-project rules...
}
}