Skip to content

Commit ec47332

Browse files
committed
Fixed bug when using config file (fixes #312)
1 parent d15ccde commit ec47332

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/cli/common.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,6 @@ function cli(api){
257257
var data = api.readFile(api.getFullPath(".csslintrc"));
258258
if (data) {
259259
options = processArguments(data.split(/[\s\n\r]+/m), options);
260-
api.print("ignore = " + options.ignore);
261-
api.print("errors = " + options.errors);
262-
api.print("warnings = " + options.warnings);
263260
}
264261

265262
return options;
@@ -297,4 +294,4 @@ function cli(api){
297294
}
298295

299296
api.quit(processFiles(options.files,options));
300-
}
297+
}

0 commit comments

Comments
 (0)