1.5.0 • Published 1 year ago

@short.io/style-guide v1.5.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Code style guide

This package provides basic ESLint and Prettier rules for code style.

Install

Since ESLint can search its configs only in files prefixed with eslint-config, we need to install the package under a different module name:

npm i -D @short.io/eslint-config@npm:@short.io/style-guide

Usage

For ESLint rules usage extends the rules in your .eslintrc.js.

module.exports = {
    extends: ['@short.io/eslint-config/backend'],
};

For Prettier rules usage include the rules right in your package.json:

"prettier": "@short.io/eslint-config/prettier"