Skip to content

Commit 2a34078

Browse files
Antreesybackportbot[bot]
authored andcommitted
chore(eslint): types rules
- @stylistic/member-delimiter-style Signed-off-by: Maksim Sukharev <[email protected]>
1 parent d574234 commit 2a34078

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

eslint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default [
1212
rules: {
1313
'@nextcloud/vue/no-deprecated-exports': 'off',
1414
'@nextcloud/vue/no-deprecated-props': 'off',
15-
'@stylistic/member-delimiter-style': 'off',
1615
'@typescript-eslint/no-unsafe-function-type': 'off',
1716
'@typescript-eslint/no-unused-vars': 'off',
1817
'@typescript-eslint/no-use-before-define': 'off',

src/components/exception/LogException.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import { computed } from 'vue'
2424
import StackTrace from './StackTrace.vue'
2525
2626
const props = withDefaults(defineProps<{
27-
isPrevious: boolean,
28-
isExpanded: boolean,
27+
isPrevious: boolean
28+
isExpanded: boolean
2929
exception: IException
3030
}>(), {
3131
isExpanded: false,

src/interfaces/ILogEntry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ export interface IException {
4040
Code: number
4141
CustomMessage: string
4242
Exception: string
43-
File: string,
44-
Line: number,
43+
File: string
44+
Line: number
4545
Message: string
4646
Trace: readonly ITraceLine[]
4747
Previous?: this

src/store/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ interface SettingsState extends IAppSettings {
1414
/**
1515
* Local logging file if loaded
1616
*/
17-
localFile?: File,
17+
localFile?: File
1818
}
1919

2020
/**

src/vue-shim.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ declare module 'vue-material-design-icons/*.vue' {
88

99
const IconVue: DefineComponent<{
1010
/** @default 24 */
11-
size?: number;
11+
size?: number
1212
/** @default 'currentColor' */
13-
fillColor?: string;
14-
title?: string;
13+
fillColor?: string
14+
title?: string
1515
}>
1616

1717
export default IconVue

0 commit comments

Comments
 (0)