Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rwv committed Nov 17, 2023
1 parent 32580d9 commit bfc6380
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
7 changes: 1 addition & 6 deletions src/components/buttons/NavigateToHomePage.vue
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<template>
<n-button
text
tag="a"
href="https://zczc.cz"
target="_blank"
>
<n-button text tag="a" href="https://zczc.cz" target="_blank">
<template #icon>
<n-icon>
<Home12Regular />
Expand Down
2 changes: 1 addition & 1 deletion src/utils/scan-renderer/canvas-scan/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const colorspaces = ["gray", "sRGB"] as const;
export interface ScanConfig {
rotate: number;
rotate_var: number;
colorspace: typeof colorspaces[number];
colorspace: (typeof colorspaces)[number];
blur: number;
noise: number;
border: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/scan-renderer/config.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const colorspaces = ["gray", "sRGB"] as const;
export interface ScanConfig {
rotate: number;
rotate_var: number;
colorspace: typeof colorspaces[number];
colorspace: (typeof colorspaces)[number];
blur: number;
noise: number;
border: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/scan-renderer/magica-scan/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const colorspaces = ["gray", "sRGB"] as const;
export interface ScanConfig {
rotate: number;
rotate_var: number;
colorspace: typeof colorspaces[number];
colorspace: (typeof colorspaces)[number];
blur: number;
noise: number;
border: boolean;
Expand Down

0 comments on commit bfc6380

Please sign in to comment.