@@ -113,21 +113,21 @@ export default ts.config(
113113 // ======================
114114
115115 // Use semicolons to help prevent weird and wonderful JS quirks
116- " @stylistic/semi" : [ " error" , " always" , { omitLastInOneLineBlock : true } ] ,
116+ ' @stylistic/semi' : [ ' error' , ' always' , { omitLastInOneLineBlock : true } ] ,
117117 // Single quotes where possible
118- " @stylistic/quotes" : [ " error" , " single" , { avoidEscape : true , allowTemplateLiterals : false } ] ,
118+ ' @stylistic/quotes' : [ ' error' , ' single' , { avoidEscape : true , allowTemplateLiterals : false } ] ,
119119 // Only quote object properties if it'd be a syntax error otherwise
120- " @stylistic/quote-props" : [ " error" , " as-needed" ] ,
120+ ' @stylistic/quote-props' : [ ' error' , ' as-needed' ] ,
121121 // Use one true brace style
122- " @stylistic/brace-style" : [ " error" , " 1tbs" , { " allowSingleLine" : true } ] ,
122+ ' @stylistic/brace-style' : [ ' error' , ' 1tbs' , { ' allowSingleLine' : true } ] ,
123123 // Always use comma for delimiting type definitions, since it matches object notation
124- " @stylistic/member-delimiter-style" : [ " error" , {
124+ ' @stylistic/member-delimiter-style' : [ ' error' , {
125125 multiline : {
126- delimiter : " comma" ,
126+ delimiter : ' comma' ,
127127 requireLast : true ,
128128 } ,
129129 singleline : {
130- delimiter : " comma" ,
130+ delimiter : ' comma' ,
131131 requireLast : false ,
132132 }
133133 } ] ,
0 commit comments