fix linting
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Tue, 2 Aug 2022 20:25:56 +0000 (22:25 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Tue, 2 Aug 2022 20:25:56 +0000 (22:25 +0200)
.dockerignore [deleted file]
.vscode/settings.json
music_assistant/controllers/__init__.py [new file with mode: 0644]

diff --git a/.dockerignore b/.dockerignore
deleted file mode 100644 (file)
index 7368f5c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.github
-.mypy_cache
-.tox
-.git
-build
-dist
-venv
-**/__pycache__
index 0460b1ae76c66f7bb1d1988d67fa61f26f787eb4..0d511eaf21153b3b4575944c747ba96a7e0d29d5 100644 (file)
@@ -1,14 +1,10 @@
 {
-    "python.linting.pylintEnabled": true,
     "python.linting.pylintArgs": ["--rcfile=${workspaceFolder}/setup.cfg"],
     "python.linting.enabled": true,
-    "python.pythonPath": ".venv/bin/python3.9",
     "python.linting.flake8Enabled": true,
     "python.linting.flake8Args": ["--config=${workspaceFolder}/setup.cfg"],
-    "python.linting.mypyEnabled": false,
+    "python.linting.mypyEnabled": true,
     "python.testing.pytestArgs": [
         "tests"
-    ],
-    "python.testing.unittestEnabled": false,
-    "python.testing.pytestEnabled": true,
+    ]
 }
diff --git a/music_assistant/controllers/__init__.py b/music_assistant/controllers/__init__.py
new file mode 100644 (file)
index 0000000..49fe05d
--- /dev/null
@@ -0,0 +1 @@
+"""Package with controllers."""