JSPM

@mcmath/coffeelint-config

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

CoffeeLint config for CoffeeScript projects

Package Exports

  • @mcmath/coffeelint-config

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

Readme

@mcmath/coffeelint-config

Version Build

CoffeeLint config for CoffeeScript projects

Install

Install through npm as a development dependency. CoffeeScript and CoffeeLint should also be installed.

npm install --save-dev coffee-script coffeelint @mcmath/coffeelint-config

Usage

Create a coffeelint.json file at the root of your project with the following contents:

{ "extends": "@mcmath/coffeelint-config" }

Rules may be added or modified like so:

{
  "extends": "@mcmath/coffeelint-config",
  "indentation": {
    "level": "error",
    "value": 2
  },
  "max_line_length": {
    "level": "ignore"
  }
}