JSPM

eslint-config-software-improvement-group

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q46026F
  • License MIT

ESLint configuration for Software Improvement Group's (SIG) 10 guidelines for building maintainable software.

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

Greenkeeper badge

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"]
}