Skip to content

Instantly share code, notes, and snippets.

@rogerramosme
Forked from shettayyy/pre-commit-eslint
Last active March 29, 2018 22:29
Show Gist options
  • Select an option

  • Save rogerramosme/359182c5a5cf6ecee4a8f52862f1b4f9 to your computer and use it in GitHub Desktop.

Select an option

Save rogerramosme/359182c5a5cf6ecee4a8f52862f1b4f9 to your computer and use it in GitHub Desktop.

Revisions

  1. rogerramosme revised this gist Mar 29, 2018. 2 changed files with 6 additions and 6 deletions.
    6 changes: 3 additions & 3 deletions pre-commit-js[x]
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/bin/sh

    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".tsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/tslint"
    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/eslint"

    if [[ "$STAGED_FILES" = "" ]]; then
    exit 0
    @@ -13,7 +13,7 @@ echo "\nValidating Javascript:\n"

    # Check for eslint
    if [[ ! -x "$ESLINT" ]]; then
    echo "\t\033[41mPlease install TSlint\033[0m (npm i --save-dev tslint)"
    echo "\t\033[41mPlease install ESlint\033[0m (npm i --save-dev eslint)"
    exit 1
    fi

    6 changes: 3 additions & 3 deletions pre-commit-ts[x]
    Original file line number Diff line number Diff line change
    @@ -1,7 +1,7 @@
    #!/bin/sh

    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/eslint"
    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".tsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/tslint"

    if [[ "$STAGED_FILES" = "" ]]; then
    exit 0
    @@ -13,7 +13,7 @@ echo "\nValidating Javascript:\n"

    # Check for eslint
    if [[ ! -x "$ESLINT" ]]; then
    echo "\t\033[41mPlease install ESlint\033[0m (npm i --save-dev eslint)"
    echo "\t\033[41mPlease install TSlint\033[0m (npm i --save-dev tslint)"
    exit 1
    fi

  2. rogerramosme revised this gist Mar 29, 2018. 2 changed files with 0 additions and 0 deletions.
    File renamed without changes.
    File renamed without changes.
  3. rogerramosme revised this gist Mar 29, 2018. 2 changed files with 41 additions and 0 deletions.
    41 changes: 41 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    #!/bin/sh

    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".tsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/tslint"

    if [[ "$STAGED_FILES" = "" ]]; then
    exit 0
    fi

    PASS=true

    echo "\nValidating Javascript:\n"

    # Check for eslint
    if [[ ! -x "$ESLINT" ]]; then
    echo "\t\033[41mPlease install TSlint\033[0m (npm i --save-dev tslint)"
    exit 1
    fi

    for FILE in $STAGED_FILES
    do
    "$ESLINT" "$FILE"

    if [[ "$?" == 0 ]]; then
    echo "\t\033[32mESLint Passed: $FILE\033[0m"
    else
    echo "\t\033[41mESLint Failed: $FILE\033[0m"
    PASS=false
    fi
    done

    echo "\nJavascript validation completed!\n"

    if ! $PASS; then
    echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n"
    exit 1
    else
    echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
    fi

    exit $?
    File renamed without changes.
  4. Rahul S Shetty created this gist Apr 24, 2017.
    41 changes: 41 additions & 0 deletions pre-commit-eslint
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    #!/bin/sh

    STAGED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep ".jsx\{0,1\}$")
    ESLINT="$(git rev-parse --show-toplevel)/node_modules/.bin/eslint"

    if [[ "$STAGED_FILES" = "" ]]; then
    exit 0
    fi

    PASS=true

    echo "\nValidating Javascript:\n"

    # Check for eslint
    if [[ ! -x "$ESLINT" ]]; then
    echo "\t\033[41mPlease install ESlint\033[0m (npm i --save-dev eslint)"
    exit 1
    fi

    for FILE in $STAGED_FILES
    do
    "$ESLINT" "$FILE"

    if [[ "$?" == 0 ]]; then
    echo "\t\033[32mESLint Passed: $FILE\033[0m"
    else
    echo "\t\033[41mESLint Failed: $FILE\033[0m"
    PASS=false
    fi
    done

    echo "\nJavascript validation completed!\n"

    if ! $PASS; then
    echo "\033[41mCOMMIT FAILED:\033[0m Your commit contains files that should pass ESLint but do not. Please fix the ESLint errors and try again.\n"
    exit 1
    else
    echo "\033[42mCOMMIT SUCCEEDED\033[0m\n"
    fi

    exit $?