Commit 3aa9850c authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

feat: Initial commit

parent f41ea4f4
Loading
Loading
Loading
Loading

.coveragerc

0 → 100644
+2 −0
Original line number Diff line number Diff line
[run]
omit = tests/*
 No newline at end of file

.gitignore

0 → 100644
+4 −0
Original line number Diff line number Diff line
.DS_Store
__pycache__/
.ipynb_checkpoints
notebooks/playground.ipynb
 No newline at end of file

.gitlab-ci.yml

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
# You can override the included template(s) by including variable overrides
# SAST customization: https://docs.gitlab.com/ee/user/application_security/sast/#customizing-the-sast-settings
# Secret Detection customization: https://docs.gitlab.com/ee/user/application_security/secret_detection/#customizing-settings
# Dependency Scanning customization: https://docs.gitlab.com/ee/user/application_security/dependency_scanning/#customizing-the-dependency-scanning-settings
# Container Scanning customization: https://docs.gitlab.com/ee/user/application_security/container_scanning/#customizing-the-container-scanning-settings
# Note that environment variables can be set in several places
# See https://docs.gitlab.com/ee/ci/variables/#cicd-variable-precedence
stages:
- test
sast:
  stage: test
include:
- template: Security/SAST.gitlab-ci.yml
+31 −0
Original line number Diff line number Diff line
{
    "recommendations": [
        "2gua.rainbow-brackets",
        "akamud.vscode-theme-onedark",
        "bierner.markdown-mermaid",
        "christian-kohler.path-intellisense",
        "dongli.python-preview",
        "emmanuelbeziat.vscode-great-icons",
        "formulahendry.auto-rename-tag",
        "GrapeCity.gc-excelviewer",
        "johnpapa.vscode-peacock",
        "kisstkondoros.vscode-gutter-preview",
        "littlefoxteam.vscode-python-test-adapter",
        "mechatroner.rainbow-csv",
        "ms-python.python",
        "ms-python.black-formatter",
        "ms-python.vscode-pylance",
        "ms-toolsai.jupyter",
        "ms-vscode-remote.remote-ssh",
        "ms-vscode-remote.remote-ssh-edit",
        "ms-vscode-remote.remote-containers",
        "ms-vscode.atom-keybindings",
        "njpwerner.autodocstring",
        "njqdev.vscode-python-typehint",
        "oderwat.indent-rainbow",
        "rafamel.subtle-brackets",
        "redhat.vscode-xml",
        "ryanluker.vscode-coverage-gutters",
        "wmaurer.change-case"
    ]
}

.vscode/settings.json

0 → 100644
+23 −0
Original line number Diff line number Diff line
{
    "workbench.colorCustomizations": {
        "activityBar.activeBackground": "#84C446",
        "activityBar.background": "#007833",
        "activityBar.foreground": "#e7e7e7",
        "activityBar.inactiveForeground": "#e7e7e799",
        "activityBarBadge.background": "#62003F",
        "activityBarBadge.foreground": "#e7e7e7",
        "commandCenter.border": "#e7e7e7",
        "sash.hoverBorder": "#2C5135",
        "statusBar.background": "#215732",
        "statusBar.foreground": "#e7e7e7",
        "statusBarItem.hoverBackground": "#2C5135",
        "statusBarItem.remoteBackground": "#215732",
        "statusBarItem.remoteForeground": "#e7e7e7",
        "titleBar.activeBackground": "#215732",
        "titleBar.activeForeground": "#e7e7e7",
        "titleBar.inactiveBackground": "#215732",
        "titleBar.inactiveForeground": "#e7e7e7"
    },
    "peacock.color": "#215732",
    "python.linting.pylintEnabled": true
}
 No newline at end of file
Loading