Skip to content
Snippets Groups Projects
Select Git revision
  • b6e5a6828e530c01c47c053565783245407bbf12
  • main default protected
  • update_rope
  • 0.4.5
  • 0.4.2
  • 0.4.1
  • 0.4
  • v0.3
  • v0.2
9 results

make_random_graphs.Rd

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