From 13b4ca54cf700d34d5ae22e508583a9198a59d9a Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 13 Apr 2014 17:58:19 -0700 Subject: [PATCH] pyflakes -> flake8 --- .pre-commit-config.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1453ed0..aa11be6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,5 @@ - repo: git@github.com:pre-commit/pre-commit-hooks - sha: 63b595ec2c5ac8b1812ce4c1dd9ce9122cedc826 + sha: ca93f6834f2afc8a8f7de46c0e02076419077c7a hooks: - id: trailing-whitespace files: \.(py|sh|yaml)$ @@ -11,10 +11,11 @@ files: \.py$ - id: name-tests-test files: tests/.+\.py$ - - id: pyflakes + - id: flake8 files: \.py$ + args: [--max-line-length=131] - repo: git@github.com:pre-commit/pre-commit - sha: 3cfc49b522dee27cdcce83781cd874c5638ad6c1 + sha: 2c7ec7a744908896af3afd140346e690deca7782 hooks: - id: validate_config files: ^\.pre-commit-config.yaml$