generated from ocadotechnology/codeforlife-template-backend
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test * test * validate pr refs * reset api app * add .venv * add code checkers * set cwd * new deps * remove unused config * fix pylint_django bug * quick save * finalize * move logic to signal * feedback * split run into separate files * update test cases * house keeping * house keeping * hi again florian * Merge branch 'development' into enable_disable_otp * remove todo * remove spaces * remove more spaces * feedback and rename scripts
- Loading branch information
Showing
14 changed files
with
300 additions
and
23 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,51 @@ | ||
{ | ||
"module.docstring": { | ||
"prefix": [ | ||
"module.docstring", | ||
"\"\"\"", | ||
"'''" | ||
], | ||
"scope": "python", | ||
"body": [ | ||
"\"\"\"", | ||
"© Ocado Group", | ||
"Created on $CURRENT_DATE/$CURRENT_MONTH/$CURRENT_YEAR at $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND($CURRENT_TIMEZONE_OFFSET)." | ||
"", | ||
"${1:__description__}", | ||
"\"\"\"" | ||
] | ||
}, | ||
"module.doccomment": { | ||
"prefix": [ | ||
"module.doccomment", | ||
"/" | ||
], | ||
"scope": "javascript,typescript,javascriptreact,typescriptreact", | ||
"body": [ | ||
"/**", | ||
" * © Ocado Group", | ||
" * Created on $CURRENT_DATE/$CURRENT_MONTH/$CURRENT_YEAR at $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND($CURRENT_TIMEZONE_OFFSET)." | ||
" *", | ||
" * ${1:__description__}", | ||
" */" | ||
] | ||
}, | ||
"pylint.disable-next": { | ||
"prefix": [ | ||
"# pylint" | ||
], | ||
"scope": "python", | ||
"body": [ | ||
"# pylint: disable-next=${1:__code_name__}" | ||
] | ||
}, | ||
"mypy.ignore": { | ||
"prefix": [ | ||
"# type" | ||
], | ||
"scope": "python", | ||
"body": [ | ||
"# type: ignore[${1:__code_name__}]" | ||
] | ||
} | ||
} |
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
Oops, something went wrong.