task_lint.sh 281 Bytes
Newer Older
1
#!/bin/bash
2
3
4

# cpplint
echo 'Checking code style of C++ codes...'
5
python3 third_party/dmlc-core/scripts/lint.py dgl cpp include src || exit 1
Minjie Wang's avatar
Minjie Wang committed
6
7
8

# pylint
echo 'Checking code style of python codes...'
9
python3 -m pylint --reports=y -v --rcfile=tests/lint/pylintrc python/dgl || exit 1