JSPM

eslint-config-software-improvement-group

1.6.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q47471F
  • License MIT

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

Package Exports

  • eslint-config-software-improvement-group
  • eslint-config-software-improvement-group/index.js

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.

Install

npm install eslint-config-software-improvement-group --save-dev

Usage

For use with @typescript-eslint, extend software-improvement-group/@typescript-eslint. Recommended for new typescript code.

{
  "extends": ["software-improvement-group/@typescript-eslint"]
}

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