diff options
| -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/** |
