-
Notifications
You must be signed in to change notification settings - Fork 1
RHA/QRW-153/QRW-117/author_image #55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
RustamHabibovv
wants to merge
46
commits into
master
Choose a base branch
from
RHA/QRW-153
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
46 commits
Select commit
Hold shift + click to select a range
3849e79
Database switched from sqlite3 to postgresql
RustamHabibovv 3509a3c
Pylint issues
RustamHabibovv 6139f18
Pylint and mypy issues solving
RustamHabibovv 01a1a46
Pylint settings file issue solving
RustamHabibovv 9b65869
Pylint version change
RustamHabibovv 1f5df96
Pylint version downgrade
RustamHabibovv 83cc6e5
Pylint skip settings file
RustamHabibovv a93ed5c
Pylint fail fast
RustamHabibovv c3c59f3
Back to initial state
RustamHabibovv 736ece8
Pylint.yml file changed
RustamHabibovv 5950580
Disable import error
RustamHabibovv 0e892b3
Disable E0001
RustamHabibovv 948c831
Django settings module configured
RustamHabibovv 353fd00
Disable E5110
RustamHabibovv 4b702c8
Update README.md
RustamHabibovv 5829652
Disable errors only for settings file
RustamHabibovv 46ec901
Merge branch 'master' of github.com:Strexas/qr_web into RHA/QRW-117
RustamHabibovv 2e86ba5
Merge branch 'RHA/QRW-117' of github.com:Strexas/qr_web into RHA/QRW-117
RustamHabibovv c3806a7
E5110 solving
RustamHabibovv 05a0c26
Pylint changes
RustamHabibovv e6a949d
Pylint
RustamHabibovv 5a8efcd
Pylint solving
RustamHabibovv 08adb4e
Solving pylint E5110
RustamHabibovv 61cd4ff
pylint django-configure
RustamHabibovv 7aa1772
Pylint django configure
RustamHabibovv 92a465f
Setting enviroment variable
RustamHabibovv da92f54
Configure secret key
RustamHabibovv c6ec40f
Added enviroment variables
RustamHabibovv ac3721b
Update README.md
RustamHabibovv 5e2e9b5
Added author image to view page
RustamHabibovv bc63b42
Static code analysis file updates
RustamHabibovv adafa4c
Requirements update
RustamHabibovv c0b06d3
Adding module docstring to static_code_analysis file
RustamHabibovv 48a78ac
Merge branch 'RHA/QRW-117' of github.com:Strexas/qr_web into RHA/QRW-153
RustamHabibovv 13be250
Pull changes
RustamHabibovv e4c57d2
Delete image file
RustamHabibovv 2966807
add module string
RustamHabibovv 4eb4da0
Gitignore changes
RustamHabibovv 1d6ef80
Resolving conflicts
RustamHabibovv 2e45523
Resolving conflicts
RustamHabibovv 1eddb55
Changing requirements file
RustamHabibovv 72524d5
Settings file pylint fixes
RustamHabibovv 3e32877
Mypy changes
RustamHabibovv 4d12c37
Solve conflicts
RustamHabibovv e8e1d89
Add final line
RustamHabibovv 3582c2b
remove spec symbol
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,6 @@ | ||
| SECRET_KEY=django-insecure-728k0bs%91o$^sp%aa_ji@2fmtwpdk7r1na#*$%l2+%)7tnpo3 | ||
| DB_NAME=qrweb_db | ||
| DB_USER=postgres | ||
| DB_PASSWORD=killer04 | ||
| DB_HOST=127.0.0.1 | ||
| DB_PORT=5432 |
This file contains hidden or 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
Binary file not shown.
This file contains hidden or 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 |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| """Runs mypy and pylint""" | ||
|
|
||
| """File to run static code analysis for mypy and pylint""" | ||
| import subprocess | ||
|
|
||
| # MyPy | ||
| subprocess.run("mypy --install-types --non-interactive".split(), check=True) | ||
| subprocess.run("mypy ./".split(), check=False) | ||
| subprocess.run("mypy ./ --exclude venv".split(), check=False) | ||
|
|
||
| # PyLint | ||
| subprocess.run("pylint -j 0\ | ||
| --load-plugins=pylint_django \ | ||
| --max-parents=14 \ | ||
| --django-settings-module=qr_web.settings " | ||
| subprocess.run("pylint -j 0 " | ||
| "--load-plugins=pylint_django " | ||
| "--max-parents=14 " | ||
| "--django-settings-module=qr_web.settings " | ||
| "--recursive=y " | ||
| "--ignore=.venv ./".split(), check=False) | ||
| "--ignore=venv " | ||
| "./".split(), check=False) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.