Skip to content
Snippets Groups Projects
Select Git revision
  • set-dependency-scanning-config-1
  • master default protected
  • dev protected
  • Issue/3006-changeApplicationProfileToMetadataProfile
  • Issue/3057-fix404InAims
  • Issue/3000-fixRemovingOfApInAims
  • Issue/2315-improveErrorCommunication
  • Hotfix/2957-styleAndUpgrade
  • Issue/2943-uiFeedback
  • Issue/2599-vue3Migration
  • Issue/xxxx-qualifiedShapeRedo
  • Issue/2779-correctFallback
  • Issue/2759-showMissingField
  • Issue/2703-vocabularyList
  • Issue/xxxx-searchEnhancements
  • Issue/xxxx-rdfEditor
  • Issue/2732-updatedApiClient
  • Issue/2525-fixedFixValues
  • Hotfix/2681-validationErrors
  • Issue/xxxx-excludeModuleAPs
  • APIv2
  • v3.1.0
  • v3.0.8
  • v3.0.7
  • v3.0.6
  • v3.0.5
  • v3.0.4
  • v3.0.3
  • v3.0.2
  • v3.0.1
  • v3.0.0
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.1
  • v2.20.0
  • v2.19.6
  • v2.19.5
  • v2.19.4
  • v2.19.3
41 results

vue.config.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .eslintrc.js 599 B
    module.exports = {
      root: true,
      env: {
        node: true,
      },
      extends: [
        "plugin:vue/essential",
        "eslint:recommended",
        "@vue/typescript/recommended",
        "@vue/prettier",
        "@vue/prettier/@typescript-eslint",
      ],
      parserOptions: {
        ecmaVersion: 2020,
      },
      rules: {
        "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
        "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
        "@typescript-eslint/no-this-alias": [
          "error",
          {
            allowDestructuring: false,
            allowedNames: ["app", "me"],
          },
        ],
      },
    };