JSPM

coffeelint-non-indentation-alignment

1.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q22360F
  • License MIT

This coffeelint rule forbids spaces as padding or alignment, other than indentation.

Package Exports

  • coffeelint-non-indentation-alignment

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-non-indentation-alignment) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Coffeelint Non-indentation Alignment

npm-image

This rule forbids spaces as padding or alignment, other than indentation.

Comments and whitespace in strings are ignored. Trailing whitespace is also ignored, because there is already a supported coffeelint rule for that.

Install

Install with the following:

npm install --save-dev coffeelint-non-indentation-alignment

Usage

{
  "non_indentation_alignment": {
    "module": "coffeelint-non-indentation-alignment",
    "level": "error"
  }
}

Examples

# good
plant = "dionaea muscipula"
food = "bug"
country = "united states"

# bad
plant   = "dionaea muscipula"
food    = "bug"
country = "united states"

Development

Please feel free to contribute by making an issue or pull request! See coffeelint's 3rd party rules guide if you need help with setting up.

License

MIT