Skip to content
This repository has been archived by the owner on May 14, 2018. It is now read-only.

scalableminds/coffeelint-newline-after-function

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coffeelint - Newline after Function

Validate a newline policy after every function definition

Description

This CoffeeLint plugin verifies whether or not your function definitions are followed by a newline. You can customise the number of newlines.

Installation

[sudo] npm install -g coffeelint-newline-after-function

Note: Right now a Coffeelint plugin cannot be installed as a project dependency and must be installed globally. Perhaps this will be improved in a future version of Coffeelint. If you would like to track progress on this enhancement head over here.

Usage

Insert the below configuration into coffeelint.json that you use for linting your scripts:

"newline_after_function": {
    "module": "coffeelint-newline-after-function",
    "value": 1,
    "level": "error"
}

Example

This code will lint without errors:

class TestClass

  foo : ->

      @bar()

  bar : =>

      console.log("foo bar")

But this will fail:

class TestClass

  foo : ->
    console.log("Oh no! I have linting errors.")

Configuration

The only configuration option specific to this plugin is the value property. Change this to the number of newlines that you like to be inforced.

By default, Coffeelint will report errors if this rule is not satisfied. You may want to relax this by setting the level to warn in your configuration.

License

MIT © scalable minds

About

Validate a newline policy after every function definition

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published