summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurimas Liutikas <aurimas@google.com>2018-07-11 18:13:53 -0700
committerandroid-build-merger <android-build-merger@google.com>2018-07-11 18:13:53 -0700
commit8e55ec3c1e36c1b16758f3b7ea9429851b630e3b (patch)
treeab623cd6b323db4baf0c194170eb5c441741026b
parente4158b37f3394e0398050be9e31d206063282bc6 (diff)
parent68e5195bb7e77897c596a4d27af2c82c5e6a4cb1 (diff)
downloadktlint-8e55ec3c1e36c1b16758f3b7ea9429851b630e3b.tar.gz
Print message to format if any errors are found.
am: 68e5195bb7 Change-Id: I886451671d70116458b65d71c104064dac775cdb
-rwxr-xr-xktlint.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/ktlint.py b/ktlint.py
index 697a0d6..d0c9faa 100755
--- a/ktlint.py
+++ b/ktlint.py
@@ -26,6 +26,12 @@ import sys
MAIN_DIRECTORY = os.path.normpath(os.path.dirname(__file__))
KTLINT_JAR = os.path.join(MAIN_DIRECTORY, 'ktlint-android-all.jar')
+FORMAT_MESSAGE = '''
+**********************************************************************
+To format run:
+{}/ktlint.py --format --file {}
+**********************************************************************
+'''
def main(args=None):
@@ -35,7 +41,8 @@ def main(args=None):
parser.add_argument('--noformat', dest='format', action='store_false')
parser.set_defaults(format=False)
args = parser.parse_args()
- ktlint_args = [f for f in args.file if f.endswith('.kt')]
+ kt_files = [f for f in args.file if f.endswith('.kt') or f.endswith('.kts')]
+ ktlint_args = kt_files[:]
if args.format:
ktlint_args += ['-F']
if not ktlint_args:
@@ -50,6 +57,7 @@ def main(args=None):
if stdout:
print 'prebuilts/ktlint found errors in files you changed:'
print stdout
+ print FORMAT_MESSAGE.format(MAIN_DIRECTORY, ' '.join(kt_files))
sys.exit(1)
else:
sys.exit(0)