diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-01-20 18:10:47 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 18:10:47 +1100 |
commit | 084dc0be08555891cad4c2bb984822a62ec5ec9f (patch) | |
tree | ed2ca0fafefa2224ae32761f955f63935422a97d /scripts | |
parent | fix: route file regex (#956) (diff) | |
download | server-084dc0be08555891cad4c2bb984822a62ec5ec9f.tar.xz |
Add ESLint (#941)
* Add eslint, switch to lint-staged for precommit * Fix all ESLint errors * Update GH workflow to check prettier and eslint
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/util/getRouteDescriptions.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/util/getRouteDescriptions.js b/scripts/util/getRouteDescriptions.js index 274c0d14..649cafaf 100644 --- a/scripts/util/getRouteDescriptions.js +++ b/scripts/util/getRouteDescriptions.js @@ -32,7 +32,7 @@ function registerPath(file, method, prefix, path, ...args) { const sourceFile = file.replace("/dist/", "/src/").replace(".js", ".ts"); const opts = args.find((x) => typeof x === "object"); if (opts) { - routes.set(urlPath + "|" + method, opts); // @ts-ignore + routes.set(urlPath + "|" + method, opts); opts.file = sourceFile; // console.log(method, urlPath, opts); } else { @@ -46,7 +46,6 @@ function routeOptions(opts) { return opts; } -// @ts-ignore RouteUtility.route = routeOptions; express.Router = (opts) => { |