File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed
Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ import { computed } from 'vue'
2424import StackTrace from ' ./StackTrace.vue'
2525
2626const props = withDefaults (defineProps <{
27- isPrevious: boolean ,
28- isExpanded: boolean ,
27+ isPrevious: boolean
28+ isExpanded: boolean
2929 exception: IException
3030}>(), {
3131 isExpanded: false ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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/**
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments