From 0b25f4d0d970e59bc7c63a40899c032edcd5998d Mon Sep 17 00:00:00 2001 From: Krishnakanth Alagiri <39209037+bearlike@users.noreply.github.com> Date: Mon, 11 Apr 2022 00:08:19 +0530 Subject: [PATCH] Added deepsource for CQ checks --- .deepsource.toml | 14 ++++++++++++++ .gitignore | 10 +++------- 2 files changed, 17 insertions(+), 7 deletions(-) create mode 100644 .deepsource.toml diff --git a/.deepsource.toml b/.deepsource.toml new file mode 100644 index 0000000..d257a99 --- /dev/null +++ b/.deepsource.toml @@ -0,0 +1,14 @@ +version = 1 + +test_patterns = ["test/**"] + +[[analyzers]] +name = "python" +enabled = true + + [analyzers.meta] + runtime_version = "3.x.x" + +[[analyzers]] +name = "docker" +enabled = true \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4a5eba1..b673a3e 100644 --- a/.gitignore +++ b/.gitignore @@ -144,10 +144,6 @@ dmypy.json # Cython debug symbols cython_debug/ -# PyCharm -# JetBrains specific template is maintainted in a separate JetBrains.gitignore that can -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore -# and can be added to the global gitignore or merged into this file. For a more nuclear -# option (not recommended) you can uncomment the following to ignore the entire idea folder. -#.idea/ -temp.sh +# IDE Configurations +.idea/ +.vscode/