6645054329
* Remove useless object inheritance in test code. * Remove unnecessary pass statements from test code. * Comment on why certain pylint rules are ignored. * Add more pylint test contexts. * Fix import order. * Remove unused variables. * Remove unnecessary pass statement. * Fix bad continuations. * Remove unnecessary elif. * Allow legitimate broad except statements. * Allow legitimate protected access. * Clean up names to make pylint pass.
29 lines
793 B
Python
Executable file
29 lines
793 B
Python
Executable file
#!/usr/bin/env python
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
|
|
|
|
def main():
|
|
skip = set([
|
|
'test/sanity/code-smell/%s' % os.path.basename(__file__),
|
|
])
|
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
|
if path in skip:
|
|
continue
|
|
|
|
with open(path, 'r') as path_fd:
|
|
for line, text in enumerate(path_fd.readlines()):
|
|
match = re.search(r'(FieldAttribute.*(default|required).*(default|required))', text)
|
|
|
|
if match:
|
|
print('%s:%d:%d: use only one of `default` or `required` with `FieldAttribute`' % (
|
|
path, line + 1, match.start(1) + 1))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|