Skip to content

Commit

Permalink
Merge pull request #5699 from eslint/issue5698
Browse files Browse the repository at this point in the history
Fix: Correct default for indentation in `eslint --init` (fixes #5698)
  • Loading branch information
gyandeeps committed Mar 27, 2016
2 parents 0e6118b + 98e6bd9 commit 8667431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config/config-initializer.js
Expand Up @@ -412,7 +412,7 @@ function promptUser(callback) {
type: "list",
name: "indent",
message: "What style of indentation do you use?",
default: "tabs",
default: "tab",
choices: [{name: "Tabs", value: "tab"}, {name: "Spaces", value: 4}]
},
{
Expand Down

0 comments on commit 8667431

Please sign in to comment.