From 06413f1af5d1d1a302ab833716e8add1bc0d5eb6 Mon Sep 17 00:00:00 2001 From: Yan Ni Date: Thu, 11 Oct 2018 17:36:31 +0800 Subject: [PATCH] update pylintrc to conform vscode setttings (#201) * add pycharm project files to .gitignore list * update pylintrc to conform vscode settings --- .gitignore | 3 +++ pylintrc | 15 +++++++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ad46b30886..2712fab7e2 100644 --- a/.gitignore +++ b/.gitignore @@ -59,3 +59,6 @@ typings/ # next.js build output .next + +# Pycharm Project files +.idea \ No newline at end of file diff --git a/pylintrc b/pylintrc index af37ba86d5..304e2bce6e 100644 --- a/pylintrc +++ b/pylintrc @@ -14,5 +14,16 @@ max-attributes=7 const-naming-style=any -disable=duplicate-code, - super-init-not-called +disable=all + +enable=F, + E, + unreachable, + duplicate-key, + unnecessary-semicolon, + global-variable-not-assigned, + unused-variable, + binary-op-exception, + bad-format-string, + anomalous-backslash-in-string, + bad-open-mode