-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c7df789
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Python cache | ||
__pycache__/ | ||
*.pyc | ||
|
||
# PTVS analysis | ||
.ptvs/ | ||
|
||
# Build results | ||
/bin/ | ||
/obj/ | ||
/dist/ | ||
/MANIFEST | ||
|
||
# Result of running python setup.py install/pip install -e | ||
/build/ | ||
/msal.egg-info/ | ||
|
||
# Test results | ||
/TestResults/ | ||
|
||
# User-specific files | ||
*.suo | ||
*.user | ||
*.sln.docstates | ||
/tests/config.py | ||
|
||
# Windows image file caches | ||
Thumbs.db | ||
ehthumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
# Recycle Bin used on file shares | ||
$RECYCLE.BIN/ | ||
|
||
# Mac desktop service store files | ||
.DS_Store | ||
|
||
.idea | ||
src/build | ||
*.iml | ||
/doc/_build | ||
|
||
# Virtual Environments | ||
/env* | ||
|
||
# Visual Studio Files | ||
/.vs/* | ||
/tests/.vs/* |