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
| #!/bin/bash | |
| # TODO: you will need to have conda installed | |
| # create a python environment | |
| conda create -n env_tmp python=3.8.13 -y | |
| # activate environment | |
| conda activate env_tmp |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| // Strict Checks | |
| "alwaysStrict": true, | |
| "noImplicitAny": true, | |
| "strictNullChecks": true, | |
| "useUnknownInCatchVariables": true, | |
| "strictPropertyInitialization": true, | |
| "strictFunctionTypes": true, | |
| "noImplicitThis": true, |