JSPM

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

Coffeelint configuration set for rapid coffeescript development, similar to eslint configurations

Package Exports

  • coffeelint-config-suddi

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

Readme

coffeelint-config-suddi

Greenkeeper badge

CircleCI codecov Codacy Badge npm npm David David license

codecov

npm install --save-dev coffeelint coffeelint-config-suddi

Usage

  • Add the CoffeeLint config to your package.json, for running on your CoffeeScript code:
{
    "scripts": {
        "lint": "coffeelint ."
    },
    "devDependencies": {
        "coffeelint": "^1.0.0",
        "coffeelint-config-suddi": "^2.0.0"
    },
    "coffeelintConfig": {
        "extends": "coffeelint-config-suddi"
    }
}
  • Then apply the linter with npm run lint.

NOTE: You will likely want to include a .coffeelintignore file, as coffeelint, by default will include all .coffee files including those inside of node_modules:

echo "node_modules" > .coffeelintignore

Changelog

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[2.0.12] - 2017-05-30

Changed

  • Upgraded packages according to greenkeeper.io

[2.0.11] - 2017-05-29

Added

  • Unit tests added for custom configurations

[2.0.9] - 2017-05-12

Changed

  • Updated braces_spacing to 1

[2.0.6] - 2017-05-10

Changed

  • Updated code to be compatible with node>0.12

[2.0.2] - 2017-05-03

Changed

  • Set no_stand_alone_at to "ignore"

[2.0.1] - 2017-05-03

Changed

  • Set max_line_length to "ignore"

[2.0.0] - 2017-05-03

Added

  • Added no_spaces rule
  • Added tests for custom rules

Changed

  • Switched configuration to using tabs for indentation

[1.0.0] - 2017-02-13

Added

  • Initial coffeelint configuration