From 34ba4d3e09a281ebac0c8d9b305f0dfda829e404 Mon Sep 17 00:00:00 2001 From: Martin Hjelmare <marhje52@kth.se> Date: Sun, 4 Sep 2016 04:21:19 +0200 Subject: [PATCH] Exclude www_static from pydocstyle linting (#3175) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🬠--- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 98a4f54d55d..6d952083a31 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,3 +7,6 @@ norecursedirs = .git testing_config [flake8] exclude = .venv,.git,.tox,docs,www_static,venv,bin,lib,deps,build + +[pydocstyle] +match_dir = ^((?!\.|www_static).)*$ -- GitLab