diff options
| author | XhmikosR <[email protected]> | 2017-10-12 05:12:06 +0300 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2017-11-12 01:18:53 +0200 |
| commit | 0924928cb93da3fdfa93d94ea8c7f21709e63050 (patch) | |
| tree | 9eb5634fee6e101dd330607bebe339a86c1a2e5b | |
| parent | c7a2689a31295b31ce3dd4194af727765b0fe91d (diff) | |
| download | bootstrap-0924928cb93da3fdfa93d94ea8c7f21709e63050.tar.xz bootstrap-0924928cb93da3fdfa93d94ea8c7f21709e63050.zip | |
Update Hound config.
1. Explicitly disable ESLint in Hound for now; it was disabled all this time. Temporarily disabled until the ESLint plugins are updated upstream
2. Remove unneeded ignore from .houndignore
| -rw-r--r-- | .hound.yml | 13 | ||||
| -rw-r--r-- | .houndignore | 5 |
2 files changed, 9 insertions, 9 deletions
diff --git a/.hound.yml b/.hound.yml index 2a6b05592..edc176c2a 100644 --- a/.hound.yml +++ b/.hound.yml @@ -1,18 +1,19 @@ fail_on_violations: true +eslint: + config_file: js/.eslintrc.json + enabled: false + ignore_file: .houndignore + stylelint: config_file: build/.stylelintrc enabled: true ignore_file: .houndignore -eslint: - config_file: js/.eslintrc.json - ignore_file: .houndignore - -scss: +jshint: enabled: false -jshint: +scss: enabled: false ruby: diff --git a/.houndignore b/.houndignore index 7814652fb..88f01a479 100644 --- a/.houndignore +++ b/.houndignore @@ -1,4 +1,3 @@ **/*.min.js -**/vendor/* -**/dist/* -js/tests/* +**/vendor/** +**/dist/** |
