@droplt/eslint-config
v1.2.0
Published
@droplt eslint shareable configuration
Readme
ESlint shareable config for droplt.
Install
yarn add eslint @droplt/eslint-config -DUsage
The shareable config can be configured via the eslint configuration file:
- A
.eslintrc.*file, written in YAML or JSON, with optional extensions:.yaml/.yml/.json/.js - A
eslint.config.jsfile that exports an object - A
eslintConfigkey in the project'spackage.jsonfile
// .eslintrc.js
module.exports = {
extends: ['@droplt']
}// package.json
{
...
"release": {
"extends": "@droplt"
}
}