Skip to content

Commit

Permalink
Add pylint config file
Browse files Browse the repository at this point in the history
  • Loading branch information
mher committed Jun 17, 2023
1 parent 4f64258 commit bf871b9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[MASTER]
disable=
C0114, # missing-module-docstring
C0115, # missing-class-docstring
C0116, # missing-function-docstring
C0301, # line-too-long
W0223, # abstract-method
R0903, # too-few-public-methods
R0902, # too-many-instance-attributes
W0622, # redefined-builtin
C0415, # import-outside-toplevel
W0718, # broad-exception-caught
R1735, # use-dict-literal

[BASIC]
good-names=i,e,n,x,logger,tz,db,dt

0 comments on commit bf871b9

Please sign in to comment.