summaryrefslogtreecommitdiffstats
path: root/test/lib/ansible_test/_util/controller/sanity/code-smell/line-endings.py
blob: 31f97ad8d1464c5137737f2ebef5eff1e6631f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Require Unix line endings."""
from __future__ import annotations

import sys


def main():
    """Main entry point."""
    for path in sys.argv[1:] or sys.stdin.read().splitlines():
        with open(path, 'rb') as path_fd:
            contents = path_fd.read()

        if b'\r' in contents:
            print('%s: use "\\n" for line endings instead of "\\r\\n"' % path)


if __name__ == '__main__':
    main()