File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export abstract class BaseFormatter {
42
42
}
43
43
44
44
protected handleError ( expectedFileName : string , fileName : string , error : Error ) {
45
- let customError = " Formatting with ${this.Id} failed. Please install the formatter or turn it off.\n" ;
45
+ let customError = ` Formatting with ${ this . Id } failed. Please install the formatter or turn it off.\n` ;
46
46
47
47
if ( typeof ( error ) === "object" && error !== null && ( ( < any > error ) . code === "ENOENT" || ( < any > error ) . code === 127 ) ) {
48
48
// Check if we have some custom arguments such as "pylint --load-plugins pylint_django"
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ export abstract class BaseLinter {
115
115
}
116
116
117
117
protected handleError ( expectedFileName : string , fileName : string , error : Error ) {
118
- let customError = " Linting with ${this.Id} failed. Please install the linter or turn it off.\n" ;
118
+ let customError = ` Linting with ${ this . Id } failed. Please install the linter or turn it off.\n` ;
119
119
120
120
if ( typeof ( error ) === "object" && error !== null && ( ( < any > error ) . code === "ENOENT" || ( < any > error ) . code === 127 ) ) {
121
121
// Check if we have some custom arguments such as "pylint --load-plugins pylint_django"
You can’t perform that action at this time.
0 commit comments