From f37de9a212e79e9c4c05c4298ba82ffe527d7132 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Tue, 14 Jun 2022 14:54:46 +0100 Subject: Perform stricter lint checks (#17348) --- lib/python/qmk/git.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/python/qmk/git.py') diff --git a/lib/python/qmk/git.py b/lib/python/qmk/git.py index beeb689144..f493628492 100644 --- a/lib/python/qmk/git.py +++ b/lib/python/qmk/git.py @@ -108,3 +108,12 @@ def git_check_deviation(active_branch): cli.run(['git', 'fetch', 'upstream', active_branch]) deviations = cli.run(['git', '--no-pager', 'log', f'upstream/{active_branch}...{active_branch}']) return bool(deviations.returncode) + + +def git_get_ignored_files(check_dir='.'): + """Return a list of files that would be captured by the current .gitingore + """ + invalid = cli.run(['git', 'ls-files', '-c', '-o', '-i', '--exclude-standard', check_dir]) + if invalid.returncode != 0: + return [] + return invalid.stdout.strip().splitlines() -- cgit v1.2.3