Skip to content
Snippets Groups Projects
Select Git revision
  • Issue/1804-fixedValueFix
  • master default protected
  • gitkeep
  • dev protected
  • Hotfix/2133-metadataLoading
  • Hotfix/1969-fixedLinkedRetrieval
  • Sprint/2022-01
  • Hotfix/1911-fixFormatting
  • Hotfix/1918-linkedLoading
  • Sprint/2021-24
  • Issue/1172-uploadProgress
  • Sprint/2021-22
  • Issue/43-saveButton
  • Issue/1762-renamingResourceTypes
  • Sprint/2021-18
  • Sprint/2021-20
  • Sprint/2021-16
  • Product/1552-correctFolders
  • Topic/1657-folderFix
  • Sprint/2021-15
  • v1.15.3
  • v1.15.2
  • v1.15.1
  • v1.15.0
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.0
  • v1.12.0
  • v1.11.0
  • v1.10.2
  • v1.10.1
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.1
  • v1.8.0
  • v1.7.5
  • v1.7.4
40 results

.eslintrc.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .eslintrc.js 721 B
    module.exports = {
      root: true,
      env: {
        node: true,
      },
      ignorePatterns: ["node_modules", "build", "coverage"],
      plugins: ["eslint-comments", "functional"],
      extends: [
        "plugin:vue/essential",
        "eslint:recommended",
        "@vue/typescript/recommended",
        "@vue/prettier",
        "@vue/prettier/@typescript-eslint",
      ],
      parserOptions: {
        ecmaVersion: 2020,
      },
      rules: {
        "@typescript-eslint/explicit-module-boundary-types": "off",
          "eslint-comments/disable-enable-pair": [
            "error",
            { "allowWholeFile": true }
          ],
        "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
        "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
      },
    };