From 91f32c589cb6aebdc9bd07d559a3acfaa79168ff Mon Sep 17 00:00:00 2001 From: Oleg Liubimov Date: Tue, 29 Jun 2021 11:43:35 +0300 Subject: [PATCH] fixes in .env, .gitignore files. Added .pylintrc file --- .env | 2 +- .gitignore | 2 ++ .pylintrc | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .pylintrc diff --git a/.env b/.env index ee1e668..2c9f118 100644 --- a/.env +++ b/.env @@ -27,7 +27,7 @@ REACT_APP_DS_RETURN_URL=http://localhost:3000 REACT_APP_API_BASE_URL=http://localhost:5001/api # The DS Authentication server -REACT_APP_DS_AUTH_SERVER=https://account-d.docusign.com +DS_AUTH_SERVER=https://account-d.docusign.com # Demo Docusign API URL REACT_APP_DS_DEMO_SERVER=https://demo.docusign.net diff --git a/.gitignore b/.gitignore index 74e956e..5d26f7d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,8 @@ .idea .env +__pycache__/ + # pyenv .python-version /venv diff --git a/.pylintrc b/.pylintrc new file mode 100644 index 0000000..3ed37b0 --- /dev/null +++ b/.pylintrc @@ -0,0 +1,5 @@ +[MASTER] +disable= + C0114, # (missing-module-docstring) + C0115, # (missing-class-docstring) + C0116, # (missing-function-docstring) \ No newline at end of file