From: XhmikosR Date: Thu, 12 Oct 2017 02:12:06 +0000 (+0300) Subject: Update Hound config. X-Git-Tag: v4.0.0-beta.3~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0924928cb93da3fdfa93d94ea8c7f21709e63050;p=thirdparty%2Fbootstrap.git 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 --- diff --git a/.hound.yml b/.hound.yml index 2a6b055924..edc176c2ab 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 7814652fb3..88f01a479e 100644 --- a/.houndignore +++ b/.houndignore @@ -1,4 +1,3 @@ **/*.min.js -**/vendor/* -**/dist/* -js/tests/* +**/vendor/** +**/dist/**