coffeelint-prefer-symbol-operator

0.1.1 • Public • Published

coffeelint-prefer-symbol-operator

==================================

Forked from https://github.com/parakeety/coffeelint-prefer-english-operator.

coffeelint-prefer-symbol-operator is a plugin of coffeelint. It checks for is, isnt, and, or, preferring instead ==, !=, &&, ||.

a is a #no
a == a #yes

a isnt a #no
a != a #yes

a and b #no
a && b #yes

a or b #no
a || b #yes

a or= b #no
a ||= b #yes

How to Install

  1. add "coffeelint-prefer-symbol-operator": "0.1.0" as devDependencies in package.json
  2. npm install

How to Use

In your coffeelint.json, add

{
  // other lint rules
  {
    "prefer_symbol_operator": {
      "module": "coffeelint-prefer-symbol-operator",
      "level": "error"
    }
  }
}

and run coffeelint.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.1
    482
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.1
    482
  • 0.1.0
    0

Package Sidebar

Install

npm i coffeelint-prefer-symbol-operator

Weekly Downloads

387

Version

0.1.1

License

MIT

Last publish

Collaborators

  • thoughtless