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

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

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