Commit 14b41577 authored by aniket-engg's avatar aniket-engg

linting fixes for remix-url-resolver after rebase

parent dfbd140a
...@@ -119,11 +119,11 @@ export class RemixURLResolver { ...@@ -119,11 +119,11 @@ export class RemixURLResolver {
} }
} }
/** /**
* Handle an import statement based on NPM * Handle an import statement based on NPM
* @param url The url of the NPM import statement * @param url The url of the NPM import statement
*/ */
async handleNpmImport(url: string): Promise<HandlerResponse> { async handleNpmImport (url: string): Promise<HandlerResponse> {
// eslint-disable-next-line no-useless-catch // eslint-disable-next-line no-useless-catch
try { try {
const req = 'https://unpkg.com/' + url const req = 'https://unpkg.com/' + url
...@@ -134,7 +134,7 @@ export class RemixURLResolver { ...@@ -134,7 +134,7 @@ export class RemixURLResolver {
} }
} }
getHandlers(): Handler[] { getHandlers (): Handler[] {
return [ return [
{ {
type: 'github', type: 'github',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment