Package Exports
- coffeelint-taboo
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 (coffeelint-taboo) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
coffeelint-taboo
coffeelint plugin that denies access to certain identifiers that are undesirable in production such as:
it.only
ordescribe.only
- the
console
object debugger
statements
Expected use case: ensuring no debug code gets through into production (when run as part of CI). I learned this the hard way so you don't have to!
Table of Contents
Installation
Add coffeelint-taboo to your project's dependencies
npm install --save coffeelint-taboo
Insert this somewhere into your coffeelint.json
file (I like to keep my
custom rules at the bottom):
"reject_identifiers": {
"module": "coffeelint-taboo",
"level": "error",
"identifiers": ["debugger", "console", "it.only", "describe.only"]
},
License
coffeelint-taboo is licensed under the MIT license.