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
| { | |
| "easy": [ | |
| { | |
| "translation": "Time", | |
| "article": "Die", | |
| "word": "Zeit", | |
| "audio": "https://translate.google.com/translate_tts?ie=UTF-8&client=tw-ob&tl=de&q=Zeit" | |
| }, | |
| { | |
| "translation": "Man", |
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
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
| ################################################################################ | |
| ApiVersion: v1 | |
| Kind: Event | |
| Name: minikube.172d88316a819c18 | |
| Namespace: default | |
| Controls: 1 (Failed: 1, Excluded: 0) |
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
| deploy-with-load-balancer: | |
| image: node:16.11-alpine3.14 | |
| stage: deploy | |
| when: manual | |
| artifacts: | |
| when: always | |
| paths: | |
| - dist | |
| before_script: | |
| - apk add py3-pip python3-dev gcc build-base |
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
| megalinter: | |
| stage: test | |
| # You can override MegaLinter flavor used to have faster performances | |
| # More info at https://megalinter.github.io/flavors/ | |
| image: registry.gitlab.thinksurance.de/developers/javascript/megalinter:latest | |
| script: ['true'] | |
| variables: | |
| # All available variables are described in documentation | |
| # https://megalinter.github.io/configuration/ | |
| DEFAULT_WORKSPACE: $CI_PROJECT_DIR |
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
| # Configuration file for MegaLinter | |
| # See all available variables at https://oxsecurity.github.io/megalinter/latest/configuration/ and in linters documentation | |
| APPLY_FIXES: all # all, none, or list of linter keys | |
| DEFAULT_BRANCH: master # Usually master or main | |
| # ENABLE: # If you use ENABLE variable, all other languages/formats/tooling-formats will be disabled by default | |
| # ENABLE_LINTERS: # If you use ENABLE_LINTERS variable, all other linters will be disabled by default | |
| #DISABLE: | |
| # - COPYPASTE # Uncomment to disable checks of excessive copy-pastes | |
| # - SPELL # Uncomment to disable checks of spelling mistakes |
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": true, | |
| "trailingComma": "all", | |
| "semi": false | |
| } |
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
| { | |
| "threshold": 0, | |
| "reporters": ["html", "markdown"], | |
| "ignore": [ | |
| "**/node_modules/**", | |
| "**/.git/**", | |
| "**/.rbenv/**", | |
| "**/.venv'/**", | |
| "**/*cache*/**", | |
| "**/.github/**", |
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
| rules: | |
| # All commands in a Dockerfile require at least 1 argument | |
| required_params: on | |
| # For clarity and readability, all instructions in | |
| # a Dockerfile should be uppercase | |
| uppercase_commands: on | |
| # The first instruction in a Dockerfile must specify | |
| # the base image using a FROM |
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.1", | |
| "language": "en", | |
| "ignorePaths": [ | |
| "**/node_modules/**", | |
| "**/vscode-extension/**", | |
| "**/.git/**", | |
| ".vscode", | |
| "yarn.lock", | |
| "**/dist/*", |
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
| module.exports = { | |
| parser: '@typescript-eslint/parser', | |
| parserOptions: { | |
| project: 'tsconfig.json', | |
| tsconfigRootDir: __dirname, | |
| sourceType: 'module' | |
| }, | |
| plugins: ['@typescript-eslint/eslint-plugin'], | |
| extends: [ | |
| 'plugin:@typescript-eslint/recommended', |
NewerOlder