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
| # Trivy | |
| # Documentation https://github.com/aquasecurity/trivy | |
| trivy --insecure image python:3.10.6-slim | |
| trivy image python:3.8-slim-bullseye | |
| trivy image -s=HIGH,CRITICAL python:3.9-slim-bullseye | |
| # Grype | |
| # Documentation https://github.com/anchore/grype |
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
| { | |
| "root": true, | |
| "ignorePatterns": [], | |
| "overrides": [ | |
| { | |
| "files": ["*.ts"], | |
| "parserOptions": { | |
| "project": ["tsconfig.json"], | |
| "createDefaultProgram": true | |
| }, |
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
| { | |
| "plugins": [ | |
| "stylelint-scss" | |
| ], | |
| "customSyntax": "postcss-scss", | |
| "rules": { | |
| "scss/at-mixin-argumentless-call-parentheses": "always", | |
| "string-quotes": "single", | |
| "indentation": 2, | |
| "selector-attribute-quotes": "always", |
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
| { | |
| "root": true, | |
| "ignorePatterns": ["projects/**/*"], | |
| "overrides": [ | |
| { | |
| "files": ["*.ts"], | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:@typescript-eslint/recommended", | |
| "plugin:@angular-eslint/recommended", |
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
| { | |
| "singleQuote": false, | |
| "trailingComma": "all", | |
| "printWidth": 80, | |
| "tabWidth": 4, | |
| "semi": true | |
| } |
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
| { | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 | |
| "recommendations": ["angular.ng-template"] | |
| } |
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
| { | |
| "recommendations": [ | |
| "ms-python.pylint", | |
| "ms-python.black-formatter", | |
| "ms-python.vscode-pylance" | |
| ] | |
| } |
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
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "name": "Testing ....", | |
| "type": "debugpy", | |
| "request": "launch", | |
| "program": "main.py", | |
| "cwd": "${workspaceFolder}", |
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
| { | |
| "python.terminal.activateEnvironment": true, | |
| "python.defaultInterpreterPath": "${env:VIRTUAL_ENV}", | |
| "flake8.args": [ | |
| "--max-line-length=120", | |
| "--max-complexity=10", | |
| "--ignore=F401,F405,F811,S117", | |
| "--max-line-length=120", | |
| "--verbose" |
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
| [MASTER] | |
| # A comma-separated list of package or module names from where C extensions may | |
| # be loaded. Extensions are loading into the active Python interpreter and may | |
| # run arbitrary code. | |
| extension-pkg-allow-list= | |
| # A comma-separated list of package or module names from where C extensions may | |
| # be loaded. Extensions are loading into the active Python interpreter and may | |
| # run arbitrary code. (This is an alternative name to extension-pkg-allow-list |
NewerOlder