Skip to content

Commit

Permalink
fixes in .env, .gitignore files. Added .pylintrc file
Browse files Browse the repository at this point in the history
  • Loading branch information
olegliubimov committed Jun 29, 2021
1 parent 63e6c2d commit 91f32c5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
.idea
.env

__pycache__/

# pyenv
.python-version
/venv
Expand Down
5 changes: 5 additions & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[MASTER]
disable=
C0114, # (missing-module-docstring)
C0115, # (missing-class-docstring)
C0116, # (missing-function-docstring)

0 comments on commit 91f32c5

Please sign in to comment.