This file is indexed.

/usr/bin/powerline-lint is in powerline 2.3-1.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#! /usr/bin/python
# vim:fileencoding=utf-8:noet
from __future__ import (unicode_literals, division, absolute_import, print_function)

import sys

from powerline.lint import check
from powerline.commands.lint import get_argparser


if __name__ == '__main__':
	args = get_argparser().parse_args()
	sys.exit(check(args.config_path, args.debug))