Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{
"importMap": "import_map.json",
"tasks": {
"run": "deno run --allow-all index.js",
"integrationTests": "deno test --allow-all testing/integration/"
"unitTests": "deno test --allow-all --import-map testing/unit/import_map.json testing/unit/"
"testRoutes": "deno test --allow-all testing/routes/"
},
"lint": {
"files": {
"exclude": ["tmp/", "stats.js", "spa/", "api/test/", "api/modules/test/"]
},
"rules": {
"tags": ["recommended"],
"include": [
"ban-untagged-todo",
"camelcase",
"constructor-super",
"default-param-last",
"eqeqeq",
"for-direction",
"getter-return",
"no-array-constructor",
"no-async-promise-executor",
"no-await-in-loop",
"no-class-assign",
"no-compare-neg-zero",
"no-cond-assign",
"no-const-assign",
"no-constant-condition",
"no-control-regex",
"no-delete-var",
"no-deprecated-deno-api",
"no-dupe-args",
"no-dupe-class-members",
"no-dupe-else-if",
"no-dupe-keys",
"no-duplicate-case",
"no-empty",
"no-empty-character-class",
"no-empty-enum",
"no-empty-interface",
"no-empty-pattern",
"no-eval",
"no-ex-assign",
"no-explicit-any",
"no-extra-boolean-cast",
"no-extra-non-null-assertion",
"no-extra-semi",
"no-fallthrough",
"no-func-assign",
"no-global-assign",
"no-import-assign",
"no-inferrable-types",
"no-inner-declarations",
"no-invalid-regexp",
"no-invalid-triple-slash-reference",
"no-irregular-whitespace",
"no-misused-new",
"no-namespace",
"no-new-symbol",
"no-obj-calls",
"no-octal",
"no-prototype-builtins",
"no-redeclare",
"no-regex-spaces",
"no-self-assign",
"no-setter-return",
"no-shadow-restricted-names",
"no-this-alias",
"no-this-before-super",
"no-undef",
"no-unreachable",
"no-unsafe-finally",
"no-unsafe-negation",
"no-unused-labels",
"no-unused-vars",
"no-var",
"no-window-prefix",
"no-with",
"prefer-as-const",
"prefer-ascii",
"prefer-const",
"prefer-namespace-keyword",
"require-await",
"require-yield",
"use-isnan"
]
}
},
"fmt": {
"files": {
"exclude": ["tmp/", "stats.js"]
},
"options": {
"useTabs": true,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve"
}
}
}