diff options
| author | Ameya Pandilwar <[email protected]> | 2016-03-11 23:37:33 -0500 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-03-14 22:57:48 -0700 |
| commit | 122d9e53949baf96f705e67e9e198a0f2a5410e3 (patch) | |
| tree | 232496a8bf45a6d1c68ffe1905732a8d6b194028 | |
| parent | 5f959f119242565460ae07d0eaff8ed8274c22f1 (diff) | |
| download | bootstrap-122d9e53949baf96f705e67e9e198a0f2a5410e3.tar.xz bootstrap-122d9e53949baf96f705e67e9e198a0f2a5410e3.zip | |
Enabled ESLint and JSCS in Hound
Fixes #19114
Closes #19482, #19299
| -rw-r--r-- | .hound.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.hound.yml b/.hound.yml index f6077f21d..8a21bdf44 100644 --- a/.hound.yml +++ b/.hound.yml @@ -1,3 +1,5 @@ +fail_on_violations: true + scss: config_file: scss/.scss-lint.yml enabled: true @@ -6,6 +8,13 @@ scss: javascript: enabled: false +eslint: + enabled: true + config_file: js/.eslintrc + +jscs: + enabled: true + config_file: js/.jscsrc + ruby: enabled: false -fail_on_violations: true |
