From 4a75f5b7298645f154a9e8463e59ad52ceecde63 Mon Sep 17 00:00:00 2001 From: Xintao Date: Mon, 13 Sep 2021 00:41:43 +0800 Subject: [PATCH] add vscode settings; V1.3.4.2 --- .gitignore | 1 - .vscode/settings.json | 19 +++++++++++++++++++ VERSION | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index e5a25ba2c..413ab4cd9 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ wandb/* tmp/* *.DS_Store -.vscode .idea # ignored files diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..b12635534 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,19 @@ +{ + "files.trimTrailingWhitespace": true, + "editor.wordWrap": "on", + "editor.rulers": [ + 80, + 120 + ], + "editor.renderWhitespace": "all", + "editor.renderControlCharacters": true, + "python.formatting.provider": "yapf", + "python.formatting.yapfArgs": [ + "--style", + "{BASED_ON_STYLE = pep8, BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true, SPLIT_BEFORE_EXPRESSION_AFTER_OPENING_PAREN = true, COLUMN_LIMIT = 120}" + ], + "python.linting.flake8Enabled": true, + "python.linting.flake8Args": [ + "max-line-length=120" + ], +} diff --git a/VERSION b/VERSION index 984213ca0..eaeb90cad 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.4.1 +1.3.4.2