Skip to content

Instantly share code, notes, and snippets.

@also
Created April 25, 2015 20:08
Show Gist options
  • Save also/d66be9fedd7a63a273fe to your computer and use it in GitHub Desktop.
Save also/d66be9fedd7a63a273fe to your computer and use it in GitHub Desktop.
var eslint = require('eslint');
var CLIEngine = eslint.CLIEngine;
var linter = eslint.linter;
var baseConfig = {format: 'stylish'};
console.log(baseConfig.format);
new CLIEngine({baseConfig: baseConfig}).getConfigForFile('.');
console.log(baseConfig.format);
console.log();
console.log(linter.defaults().format);
new CLIEngine({format: 'compact'}).getConfigForFile('.');
console.log(linter.defaults().format);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment