Set default padding to 0, not null

This fixes https://github.com/Glavin001/atom-beautify/issues/1647 .
This commit is contained in:
Jeff Schwab 2017-05-06 19:35:20 -04:00
parent 84ad7780a4
commit 35b1c74fe3
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ module.exports = {
options: {
padding:
type: 'integer'
default: null
default: 0
minimum: 0
description: "The amount of padding to add next to each line."
}