Skip to content
Snippets Groups Projects
Select Git revision
  • Issue/3133-subProjectsChanges
  • dev protected
  • Issue/3145-redesignLoginPage
  • Issue/3093-moreInformationInTheDeletionEmails
  • Issue/3040-closeTokenWindowWithXButton
  • main default protected
  • Issue/3152-fixResourceStore
  • Issue/xxxx-DuckDBTest
  • Issue/3152-fixUpdateRequestPayload
  • Issue/2489-addNotificationManagement
  • Issue/3138-tooltipForDisabledCreateActions
  • Issue/3136-orderResourcesInAlphabeticalOrder
  • Issue/3070-newIconsForResourceTypes
  • Issue/3119-respOrg-vol2
  • Issue/3119-respOrg
  • Issue/3129-improvmentsResourceCreation
  • Issue/3068-metadataProfileTitleLanguage
  • Issue/3108-fixChangingOfGitLabToken
  • Issue/3124-confusingInfoMessageForArchivedResource
  • Issue/3098-Fix0Quota
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
  • v3.12.0
  • v3.11.0
  • v3.10.1
  • v3.9.3-hotfix3017
  • v3.10.0
  • v3.9.3
  • v3.9.2
40 results

.eslintrc.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .eslintrc.js 1.18 KiB
    module.exports = {
      root: true,
      env: {
        node: true,
        es2021: true,
      },
      ignorePatterns: ["node_modules", "build", "coverage", "components.d.ts", "Multiselect.vue"],
      plugins: ["eslint-comments", "functional"],
      extends: [
        "plugin:vue/recommended",
        "eslint:recommended",
        "@vue/typescript/recommended",
        "@vue/eslint-config-prettier",
        "@vue/eslint-config-typescript/recommended",
      ],
      parserOptions: {
        ecmaVersion: 2020,
      },
      rules: {
        "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
        "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
        "@typescript-eslint/explicit-module-boundary-types": "off",
          "eslint-comments/disable-enable-pair": [
            "error",
            { "allowWholeFile": true }
          ],
        "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }], // will only ignore variables that start with an underscore _
        "@typescript-eslint/no-inferrable-types": "off", // this enforces the removal of the type declarations for variables that are initialized with a value (e.g. let foo: string = "foo")
        "vue/multi-word-component-names": "off",
        "vue/no-v-model-argument": "off"
      },
    }