Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gitkeep
  • dev protected
  • Issue/2072-wormResourceType
  • Sprint/2022-05
  • Issue/2001-extendAnalyticsLogger
  • Issue/1799-APCreationOptionOnResourceCreation
  • Issue/1913-ModificationsResourceMetadata
  • Issue/1870-publicPrivateVisibility
  • Sprint/2022-01
  • Issue/1804-fixedValueFix
  • Sprint/2021-22
  • Issue/43-saveButton
  • Issue/1762-renamingResourceTypes
  • Hotfix/64-releaseUDE
  • Sprint/2021-16
  • Product/1666-removeRadioButtons
  • Topic/1686-removeRadioButtons
  • Sprint/2021-14
  • Sprint/2021-12
  • v1.23.1
  • v1.23.0
  • v1.22.0
  • v1.21.0
  • v1.20.0
  • v1.19.0
  • v1.18.1
  • v1.18.0
  • v1.17.6
  • v1.17.5
  • v1.17.4
  • v1.17.3
  • v1.17.2
  • v1.17.1
  • v1.17.0
  • v1.16.1
  • v1.16.0
  • v1.15.1
  • v1.15.0
  • v1.14.1
40 results

.eslintrc.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"],
          },
        ],
      },
    };