-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathhound.saas.txt
32 lines (24 loc) · 1.41 KB
/
hound.saas.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
┏━━━━━━━━━━━┓
┃ HOUND ┃
┗━━━━━━━━━━━┛
VERSION ==> #Can be self-hosted, but this is documenting the hosted version (free for open source)
#07/04/2016
GOAL ==> #Lints pull requests, adding commment if problem
#Supports:
# - JavaScript: JSHint, JSCS, ESLint
# - CSS: SCSS-lint
CONF ==> #Is ROOT/.hound.yml
CONF.fail_on_violations #BOOL (def: false): mark pull request as failed if lint error
CONF.javascript #JSHint configuration
CONF.javascript.enabled #BOOL (def: true)
CONF.javascript.config_file #.jshintrc
CONF.javascript.ignore_file #.jshintignore
CONF.jscs #JSCS configuration
CONF.jscs.enabled #BOOL (def: false)
CONF.jscs.config_file #.jscsrc
CONF.eslint #ESLint configuration
CONF.eslint.enabled #BOOL (def: false)
CONF.eslint.config_file #.eslintrc
CONF.scss #scss-lint configuration
CONF.scss.enabled #BOOL (def: true)
CONF.scss.config_file #.scss-lint.yml