File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,9 +7,11 @@ module.exports = {
77 "plugin:@typescript-eslint/recommended"
88 ] ,
99 "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"
1315 } ,
1416 "parserOptions" : {
1517 "project" : [
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export class API {
7878 return data
7979 }
8080
81- updateNoteContent = async ( noteId : string , content ?: string ) => {
81+ updateNoteContent = async ( noteId : string , content ?: string ) => {
8282 const { data } = await this . axios . patch < string > ( `notes/${ noteId } ` , { content } )
8383 return data
8484 }
@@ -103,7 +103,7 @@ export class API {
103103 return data
104104 }
105105
106- updateTeamNoteContent = async ( teamPath : string , noteId : string , content ?: string ) => {
106+ updateTeamNoteContent = async ( teamPath : string , noteId : string , content ?: string ) => {
107107 const { data } = await this . axios . patch < string > ( `teams/${ teamPath } /notes/${ noteId } ` , { content } )
108108 return data
109109 }
You can’t perform that action at this time.
0 commit comments