File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,11 @@ module.exports = {
7
7
"plugin:@typescript-eslint/recommended"
8
8
] ,
9
9
"rules" : {
10
- "no-trailing-spaces" : [ 1 , { "skipBlankLines" : false } ] ,
11
- "semi" : [ 1 , "never" ] ,
12
- '@typescript-eslint/no-non-null-assertion' : 'off'
10
+ "no-trailing-spaces" : [ "warn" , { "skipBlankLines" : false } ] ,
11
+ "semi" : [ "warn" , "never" ] ,
12
+ "@typescript-eslint/no-non-null-assertion" : "off" ,
13
+ "keyword-spacing" : [ "warn" , { "before" : true , "after" : true } ] ,
14
+ "space-infix-ops" : "warn"
13
15
} ,
14
16
"parserOptions" : {
15
17
"project" : [
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export class API {
78
78
return data
79
79
}
80
80
81
- updateNoteContent = async ( noteId : string , content ?: string ) => {
81
+ updateNoteContent = async ( noteId : string , content ?: string ) => {
82
82
const { data } = await this . axios . patch < string > ( `notes/${ noteId } ` , { content } )
83
83
return data
84
84
}
@@ -103,7 +103,7 @@ export class API {
103
103
return data
104
104
}
105
105
106
- updateTeamNoteContent = async ( teamPath : string , noteId : string , content ?: string ) => {
106
+ updateTeamNoteContent = async ( teamPath : string , noteId : string , content ?: string ) => {
107
107
const { data } = await this . axios . patch < string > ( `teams/${ teamPath } /notes/${ noteId } ` , { content } )
108
108
return data
109
109
}
You can’t perform that action at this time.
0 commit comments