You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2018/11/01 16:02:42 UTC

[arrow] branch master updated: ARROW-2535: [Python] Provide pre-commit hooks that check flake8

This is an automated email from the ASF dual-hosted git repository.

kszucs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 84e181e  ARROW-2535: [Python] Provide pre-commit hooks that check flake8
84e181e is described below

commit 84e181ee18224076741ade2676c984e9d040029d
Author: Krisztián Szűcs <sz...@gmail.com>
AuthorDate: Thu Nov 1 17:02:22 2018 +0100

    ARROW-2535: [Python] Provide pre-commit hooks that check flake8
    
    Author: Krisztián Szűcs <sz...@gmail.com>
    Author: Korn, Uwe <Uw...@blue-yonder.com>
    
    Closes #2810 from xhochy/ARROW-2535 and squashes the following commits:
    
    5597e21c <Krisztián Szűcs> instruction to run all hooks
    cd794a31 <Krisztián Szűcs> remove W605 from ignore list
    46a05c7f <Krisztián Szűcs> new flake8 ignores
    b6352c33 <Korn, Uwe> ARROW-2535:  Provide pre-commit hooks that check flake8
---
 .pre-commit-config.yaml | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..3066c5e
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,37 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# To use this, install the python package `pre-commit` and
+# run once `pre-commit install`. This will setup a git pre-commit-hook
+# that is executed on each commit and will report the linting problems.
+# To run all hooks on all files use `pre-commit run -a`
+
+repos:
+  - repo: git://github.com/pre-commit/pre-commit-hooks
+    sha: v1.2.3
+    hooks:
+     - id: flake8
+       files: ^(python|crossbow|integration)/
+       types:
+         - file
+         - python
+     - id: flake8
+       files: ^python/
+       types:
+         - file
+         - cython
+       args: [--config=python/.flake8.cython]