fix syntax errors

This commit is contained in:
Sebastian McKenzie 2015-03-16 02:00:19 +11:00
parent 8d3a7acbd1
commit 25fa10e592
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ export default class Logger {
}
deprecate(msg) {
if (!file.opts.suppressDeprecationMessages) {
if (!this.file.opts.suppressDeprecationMessages) {
console.error(msg);
}
}

View File

@ -20,7 +20,7 @@
},
"highlightErrors": {
"description": "ANSI syntax highlight error messages"
"description": "ANSI syntax highlight error messages",
"type": "boolean",
"default": true
},