diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2016-12-23 14:35:55 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2016-12-23 16:44:47 -0500 |
commit | 46a195f4433876f2c6bafeb35a8ec2ed617da396 (patch) | |
tree | 184ad8a3e80ac40bd1da6a617b86f2646847ea50 /.arclint | |
parent | 158530a5450b27eb5ae2d75b7895fd1662dde13b (diff) | |
download | haskell-46a195f4433876f2c6bafeb35a8ec2ed617da396.tar.gz |
Use python3 for linters
We now require python3 for the testsuite so rather than require two
versions of python it makes sense to use python3 for the linters as
well.
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: thomie
Differential Revision: https://phabricator.haskell.org/D2888
Diffstat (limited to '.arclint')
-rw-r--r-- | .arclint | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -71,17 +71,17 @@ }, "check-binaries": { "type": "external-json", - "external-json.script": "python .arc-linters/check-binaries.py" + "external-json.script": "python3 .arc-linters/check-binaries.py" }, "check-makefiles": { "type": "external-json", "include": ["(Makefile$)"], - "external-json.script": "python .arc-linters/check-makefiles.py" + "external-json.script": "python3 .arc-linters/check-makefiles.py" }, "bad-assert-clang-cpp": { "type": "external-json", "include": ["(\\.(l?hs|x|y\\.pp)(\\.in)?$)", "(\\.(c|h)$)"], - "external-json.script": "python .arc-linters/check-cpp.py" + "external-json.script": "python3 .arc-linters/check-cpp.py" } }, |