-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
maxLineLengthCards
feature
#47
Comments
You probably do want to have a check for long data lines. First there are limits to what SAS will accept as a line length for a program file Second if your datalines are longer than your program lines then they belong in a separate text file. |
Hmm, you do have a point about the batch line length limit. |
Ok so the plan will be to have a |
maxLineLengthCards
feature
🎉 This issue has been resolved in version 2.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
via Hubstaff Project: SASjs lint - https://app.hubstaff.com/projects/2310878 Grand total: 5:16:01 |
Datalines cannot be split over multiple lines, as each line represents an input data record. So it makes no sense to include them in the line length limit.
There are multiple 'flavours' of datalines. Each will begin / end with a line that begins with the markers below
datalines;
;
datalines4;
;;;;
cards;
;
cards4;
;;;;
parmcards;
;
parmcards4;
;;;;
The text was updated successfully, but these errors were encountered: