Package Exports
- coffeelint-internal-variable-names-usage
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-internal-variable-names-usage) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
coffeelint-internal-variable-names-usage
coffeelint-internal-variable-names-usage is a plugin of coffeelint. It checks usage of compiler's internal variable names, BC in CoffeeScript 1.9.0.
class A
constructor: (@a) ->
b = a
How to Install
- add
"coffeelint-internal-variable-names-usage": "^0.0.1"
asdevDependencies
inpackage.json
npm install
How to Use
In your coffeelint.json
, add
{
// other lint rules
{
"internal_variable_names_usage": {
"module": "coffeelint-internal-variable-names-usage",
"level": "warn"
}
}
}
and run coffeelint
.