2018-02-22 05:09:13 +01:00
|
|
|
#!/usr/bin/env python
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-02-22 05:09:13 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2018-02-27 08:32:19 +01:00
|
|
|
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
2018-02-22 05:09:13 +01:00
|
|
|
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`' % (
|
2019-07-12 22:17:20 +02:00
|
|
|
path, line + 1, match.start(1) + 1))
|
2018-02-22 05:09:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|