Package Exports
- eslint-config-software-improvement-group
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-software-improvement-group) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
eslint-config-software-improvement-group
ESLint configuration for Software Improvement Group's (SIG) 10 guidelines for building maintainable software.
Getting started
Installing
install with yarn
yarn add eslint-config-software-improvement-group -D
or install with npm
npm i eslint-config-software-improvement-group -D
Usage
To error on maintainability guidelines, extend software-improvement-group
. Recommended for new code.
{
"extends": ["software-improvement-group"]
}
To warn on maintainability guidelines, extend software-improvement-group/loose
. Recommended for legacy code.
{
"extends": ["software-improvement-group/loose"]
}