blob: 49a775e52f643051410fd48ffddadf0194fbf76c [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001#!/bin/sh
2# Simple wrapper around the pylint program that uses the pylintrc file to
3# validate the source code in files passed on command line.
4
5exec pylint --rcfile "${0%/*}/pylintrc" "$@"