lint: Make --fix a default arg for zulint.

Since the check for `--fix` is in `zulint/command.py`,
we should keep it as an arg for zulint.
This commit is contained in:
Aman Agrawal
2019-07-03 08:56:53 +05:30
committed by Tim Abbott
parent aa5a1cb509
commit 05aa3bcbc1
2 changed files with 3 additions and 3 deletions

View File

@@ -22,9 +22,6 @@ def run():
parser.add_argument('--full',
action='store_true',
help='Check some things we typically ignore')
parser.add_argument('--fix',
action='store_true',
help='Automatically fix problems where supported')
add_default_linter_arguments(parser)
args = parser.parse_args()