1.6.1 • Published 2 years ago
@short.io/style-guide v1.6.1
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-guideUsage
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"