voxpupuli / puppet-lint-strict_indent-check

indent check for puppet-lint
Mozilla Public License 2.0
4 stars 11 forks source link

Fix issue with blank line at the beginning of a file. #17

Closed phyber closed 5 years ago

phyber commented 5 years ago

Fixes #16

This resolves the issue where the linter would explode if the first line of a file was blank. The issue was caused by not checking if the token.prev_token was nil or not while getting the indent.

relud commented 5 years ago

thank you!