Browse Source

pylint config

Fabian Peter Hammerle 4 years ago
parent
commit
10603a0247
2 changed files with 13 additions and 0 deletions
  1. 4 0
      .pylintrc
  2. 9 0
      README.md

+ 4 - 0
.pylintrc

@@ -0,0 +1,4 @@
+[MESSAGE CONTROL]
+
+disable=bad-continuation, # black
+        missing-module-docstring

+ 9 - 0
README.md

@@ -29,3 +29,12 @@ Remove files from output directory that are not available in input:
 ```sh
 $ ics2vdir < input.ics --output-dir /some/path --delete
 ```
+
+### Run Tests
+
+```sh
+$ git clone https://github.com/fphammerle/ics2vdir.git
+$ cd ics2vdir
+$ pipenv sync --dev
+$ pipenv run pylint ics2vdir
+```