From dd7ef5474f935916b8d575f37d8406b2dda5ada3 Mon Sep 17 00:00:00 2001 From: Brian Wylie Date: Fri, 16 Jan 2015 07:49:49 -0700 Subject: [PATCH] testing out the disabling of no-member pep8 errors --- .landscape.yml | 2 +- .prospector.yaml | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .prospector.yaml diff --git a/.landscape.yml b/.landscape.yml index 56f2af6..b88d557 100644 --- a/.landscape.yml +++ b/.landscape.yml @@ -1,6 +1,6 @@ doc-warnings: yes test-warnings: yes -strictness: verylow +strictness: low max-line-length: 140 autodetect: yes ignore-paths: diff --git a/.prospector.yaml b/.prospector.yaml new file mode 100644 index 0000000..1d6dee3 --- /dev/null +++ b/.prospector.yaml @@ -0,0 +1,4 @@ +pep8: + disable: + - E1101 + - E1103