Skip to content
Snippets Groups Projects
Select Git revision
  • c10492a1735ba0abc62d4513c6f69126eb553735
  • master default protected
  • dev protected
  • Issue/3189-onboardingUniBonn
  • Issue/3130-onboardingUzK
  • Issue/3109-onboarding
  • Issue/2915-migrateSql2Linked
  • test_ci
  • Issue/xxxx-fixDevcontainer
  • Issue/xxxx-generateLatestTag
  • Issue/2980-fixContainerBuild
  • Issue/2967-fixGD
  • Issue/2944-gdShenanigans
  • Issue/2906-containerCron
  • Issue/2880-gd
  • petar.hristov-master-patch-9e49
  • Issue/2668-graphDeployer
  • gitkeep
  • Hotfix/xxxx-fastDeployment
  • Hotfix/2615-graphDeployerLag
  • Issue/2568-betterLogging
  • v2.2.2
  • v2.2.1
  • v2.2.0
  • v2.1.11
  • v2.1.10
  • v2.1.9
  • v2.1.8
  • v2.1.7
  • v2.1.6
  • v2.1.5
  • v2.1.4
  • v2.1.3
  • v2.1.2
  • v2.1.1
  • v2.1.0
  • v2.0.1
  • v2.0.0
  • v1.2.11
  • v1.2.10
  • v1.2.9
41 results

Deployer.cs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .eslintrc.js 839 B
    module.exports = {
      root: true,
      env: {
        browser: true,
        node: true,
      },
      ignorePatterns: ["node_modules", "build", "coverage", "auto-imports.d.ts", "components.d.ts"],
      plugins: [
        "unicorn"
      ],
      extends: [
        "eslint:recommended",
        "plugin:unicorn/recommended",
        "plugin:vue/recommended",
        "@vue/eslint-config-typescript/recommended",
        "@vue/eslint-config-prettier",
      ],
      parserOptions: {
        ecmaVersion: "latest",
        "sourceType": "module"
      },
      rules: {
        "no-unused-vars": "off",
        "@typescript-eslint/no-unused-vars": "off",
        "vue/v-on-event-hyphenation": "off",
        "unicorn/no-null": "off",
        "unicorn/filename-case": "off",
        "unicorn/prevent-abbreviations": [
          "error",
          {
            "checkFilenames": false
          }
        ],
        "unicorn/no-abusive-eslint-disable": "off"
      }
    };