Skip to content

Commit

Permalink
update pylintrc to conform vscode setttings (#201)
Browse files Browse the repository at this point in the history
* add pycharm project files to .gitignore list

* update pylintrc to conform vscode settings
  • Loading branch information
leckie-chn authored and yds05 committed Oct 11, 2018
1 parent 04e79ad commit 06413f1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ typings/

# next.js build output
.next

# Pycharm Project files
.idea
15 changes: 13 additions & 2 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 06413f1

Please sign in to comment.