@@ -15,7 +15,6 @@ module.exports = {
1515 'no-prototype-builtins' : 1 ,
1616 'no-useless-constructor' : 1 ,
1717 'no-empty-function' : 1 ,
18- '@typescript-eslint/member-ordering' : 0 ,
1918 'lines-between-class-members' : 0 ,
2019 'no-await-in-loop' : 0 ,
2120 'no-plusplus' : 0 ,
@@ -35,22 +34,23 @@ module.exports = {
3534 '@typescript-eslint/indent' : 0 ,
3635 'import/no-cycle' : 0 ,
3736 '@typescript-eslint/no-shadow' : 0 ,
38- " @typescript-eslint/method-signature-style" : 0 ,
39- " @typescript-eslint/consistent-type-assertions" : 0 ,
40- " @typescript-eslint/no-useless-constructor" : 0 ,
37+ ' @typescript-eslint/method-signature-style' : 0 ,
38+ ' @typescript-eslint/consistent-type-assertions' : 0 ,
39+ ' @typescript-eslint/no-useless-constructor' : 0 ,
4140 '@typescript-eslint/dot-notation' : 0 , // for lint performance
4241 '@typescript-eslint/restrict-plus-operands' : 0 , // for lint performance
4342 'no-unexpected-multiline' : 1 ,
44- 'no-multiple-empty-lines' : [ 'error' , { " max" : 1 } ] ,
43+ 'no-multiple-empty-lines' : [ 'error' , { max : 1 } ] ,
4544 'lines-around-comment' : [ 'error' , {
46- " beforeBlockComment" : true ,
47- " afterBlockComment" : false ,
48- " afterLineComment" : false ,
49- " allowBlockStart" : true ,
45+ beforeBlockComment : true ,
46+ afterBlockComment : false ,
47+ afterLineComment : false ,
48+ allowBlockStart : true ,
5049 } ] ,
51- "@typescript-eslint/member-ordering" : [
52- "error" ,
53- { "default" : [ "signature" , "field" , "constructor" , "method" ] }
50+ 'comma-dangle' : [ 'error' , 'always-multiline' ] ,
51+ '@typescript-eslint/member-ordering' : [
52+ 'error' ,
53+ { default : [ 'signature' , 'field' , 'constructor' , 'method' ] } ,
5454 ] ,
55- }
55+ } ,
5656} ;
0 commit comments