numpy や OpenCV などのモジュールを使っている時、以下のようなメッセージが表示されます。
E: 35,65: Module 'numpy' has no 'deg2rad' member (no-member)
E: 65,28: Module 'cv2' has no 'imread' member (no-member)
これらのモジュールのメンバーをチェックしないようにするオプションがありました。
pylint --extension-pkg-whitelist=numpy,cv2 sample.py
SublimeLinterなら、User Settings の pylintセクションを以下のようにします。
"pylint": {
"@disable": false,
"args": ["--extension-pkg-whitelist=numpy, cv2"],
"disable": "",
"enable": "",
"excludes": [],
"paths": [],
"rcfile": "",
"show-codes": false
}