Skip to content

Commit

Permalink
style: fix prettier warnings and narrow prettier checks' scope
Browse files Browse the repository at this point in the history
  • Loading branch information
tsufiev authored and Raubzeug committed Apr 5, 2022
1 parent a99ba8b commit f15ae16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build:esm": "tsc --module esnext --outDir build/esm",
"build:cjs": "tsc --module commonjs --outDir build/cjs",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:prettier": "prettier --check --loglevel=error '**/*.{js,jsx,ts,tsx}'",
"lint:prettier": "prettier --check --loglevel=error 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,14 +218,14 @@ export default class AxiosWrapper {
url: string,
params: ApiMethodParams['params'],
options: ApiMethodParams['options'] = {},
onDownloadProgress
onDownloadProgress,
) {
return this.request<T>({
method: 'GET',
url,
params,
options,
onDownloadProgress
onDownloadProgress,
});
}

Expand Down

0 comments on commit f15ae16

Please sign in to comment.