worldbank / stata-linter

MIT License
30 stars 15 forks source link

Extra too long line only corrected once #54

Closed kbjarkefur closed 1 year ago

kbjarkefur commented 2 years ago

This line is more than 2*80 characters long

iebaltab weight price   , grpvar(tmt)      pairoutput("p") ftestoutput("p") replace savecsv("${ietoolkit}/run/output/iebaltab/iebt_csv")  savexlsx("${ietoolkit}/run/output/iebaltab/iebt_xlsx")

and is corrected to but the second line below is also two long. It should have been broken up twice.

iebaltab weight price   , grpvar(tmt)      pairoutput("p") ftestoutput("p") ///
replace savecsv("${ietoolkit}/run/output/iebaltab/iebt_csv")  savexlsx("${ietoolkit}/run/output/iebaltab/iebt_xlsx")