Merge pull request #33 from github/fixRules

fix rules
This commit is contained in:
Lukas Gravley 2019-12-13 09:11:40 -06:00 committed by GitHub
commit 395505a930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1554,7 +1554,7 @@ Eslint()
################################
# Lint the file with the rules #
################################
LINT_CMD=$(cd "$GITHUB_WORKSPACE" || exit; eslint -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1)
LINT_CMD=$(cd "$GITHUB_WORKSPACE" || exit; eslint --no-eslintrc -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1)
#######################
# Load the error code #