mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
6 lines
190 B
Plaintext
6 lines
190 B
Plaintext
|
#!/bin/sh
|
||
|
# Simple wrapper around the pylint program that uses the pylintrc file to
|
||
|
# validate the source code in files passed on command line.
|
||
|
|
||
|
exec pylint --rcfile "${0%/*}/pylintrc" "$@"
|