JSPM

coffeelint-internal-variable-names-usage

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

A custom coffeelint rule to check usage of compiler's internal variable names, BC in CoffeeScript 1.9.0

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

  1. add "coffeelint-internal-variable-names-usage": "^0.0.1" as devDependencies in package.json
  2. 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.