mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-22 23:32:10 -05:00
adding coffee
This commit is contained in:
parent
7ec996c60d
commit
9b68dc7f6e
1 changed files with 23 additions and 1 deletions
|
@ -158,7 +158,7 @@ rules:
|
||||||
- [Markdownlint rules](https://awesomeopensource.com/project/DavidAnson/markdownlint)
|
- [Markdownlint rules](https://awesomeopensource.com/project/DavidAnson/markdownlint)
|
||||||
|
|
||||||
### Markdownlint Config file
|
### Markdownlint Config file
|
||||||
- `.markdown-lint.yml`
|
- `.github/linters/.markdown-lint.yml`
|
||||||
- You can pass multiple rules and overwrite default rules
|
- You can pass multiple rules and overwrite default rules
|
||||||
- File should be located at: `.github/linters/.markdownlint.yml`
|
- File should be located at: `.github/linters/.markdownlint.yml`
|
||||||
|
|
||||||
|
@ -212,10 +212,32 @@ Here is more data
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
## Coffeescript
|
## Coffeescript
|
||||||
|
- [coffeelint](http://www.coffeelint.org/)
|
||||||
|
|
||||||
### coffeelint Config file
|
### coffeelint Config file
|
||||||
|
- `.github/linters/.coffee-lint.yml`
|
||||||
|
- You can pass multiple rules and overwrite default rules
|
||||||
|
- File should be located at: `.github/linters/.coffee.yml`
|
||||||
|
|
||||||
### coffeelint disable single line
|
### coffeelint disable single line
|
||||||
|
```Coffeescript
|
||||||
|
# coffeelint: disable=max_line_length
|
||||||
|
foo = "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
|
||||||
|
# coffeelint: enable=max_line_length
|
||||||
|
```
|
||||||
|
|
||||||
### coffeelint disable code block
|
### coffeelint disable code block
|
||||||
|
```Coffeescript
|
||||||
|
# coffeelint: disable
|
||||||
|
foo = "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
|
||||||
|
bar = "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
|
||||||
|
baz = "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
|
||||||
|
taz = "some/huge/line/string/with/embed/#{values}.that/surpasses/the/max/column/width"
|
||||||
|
# coffeelint: enable
|
||||||
|
```
|
||||||
|
|
||||||
### coffeelint disable entire file
|
### coffeelint disable entire file
|
||||||
|
- You can encapsulate the entire file with the *code block format* to disable an entire file from being parsed
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue