浏览代码

pylint config

Fabian Peter Hammerle 4 年之前
父节点
当前提交
10603a0247
共有 2 个文件被更改,包括 13 次插入0 次删除
  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
+```