From 4566d5161a1262eea43d0014fbb119f2d70b968c Mon Sep 17 00:00:00 2001 From: MacBox7 Date: Fri, 20 Jul 2018 14:50:54 +0530 Subject: [PATCH] .coafile: Add NoFutureImportBear Closes https://github.com/coala/coala-quickstart/issues/267 --- .coafile | 3 +++ .moban.yaml | 1 + requirements.txt | 1 + 3 files changed, 5 insertions(+) diff --git a/.coafile b/.coafile index dc7c129..1e98497 100644 --- a/.coafile +++ b/.coafile @@ -42,3 +42,6 @@ shortlog_regex = ([^:]*|[^:]+[^ ]: [A-Z0-9*].*) [all.yml] bears = YAMLLintBear files = *.yml, .ci/*.yml, tests/**/*.yml + +[all.nofutureimports] +bears = NoFutureImportBear diff --git a/.moban.yaml b/.moban.yaml index e746bf7..9a35972 100644 --- a/.moban.yaml +++ b/.moban.yaml @@ -34,6 +34,7 @@ dependencies: - coala_utils~=0.6.6 - gemfileparser~=0.6.2 - pyjsparser~=2.4.5 + - git+https://gitlab.com/MacBox7/coala-pyflakes.git#egg=coala_pyflakes configuration: diff --git a/requirements.txt b/requirements.txt index eca68c6..6583e00 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,3 +3,4 @@ coala_bears~=0.12.0.dev20170722110839 coala_utils~=0.6.6 gemfileparser~=0.6.2 pyjsparser~=2.4.5 +git+https://gitlab.com/MacBox7/coala-pyflakes.git#egg=coala_pyflakes