Skip to content
Snippets Groups Projects
lint.sh 387 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    #
    # Runs linting scripts over the local Synapse checkout
    # isort - sorts import statements
    # black - opinionated code formatter
    
    # flake8 - lints and finds mistakes
    
    if [ $# -ge 1 ]
    then
      files=$*
    else
      files="synapse tests scripts-dev scripts"
    fi
    
    echo "Linting these locations: $files"
    
    isort $files
    
    ./scripts-dev/config-lint.sh