What quality profile is applied to your project/scan? Make sure the “Swift extend” profile is applied to your project.
If the project is already using that quality profile, can you please provide your scanner debug-level logs (just append -X to the sonar-scanner command)?
I could not replicate your issue on SonarQube EE 8.7. I created a new copy of the Sonar way (Swfit) quality profile and extended it with the same rule you used swift:s103 and modified the maximumLineLength to 323, applied the new quality profile to my project, and was able to trigger the code smell at info level:
Forcing an Elasticsearch reindex fixes typical issues in the UI, so this may help you.
If you still can’t get it to work, can you try applying your quality profile to this sample project and add a 323 character long line and see if it works for you?
Hi @Joe,
Thanks, i can see that you have the same issue. Le code severity is overrided as expected (minor->info) but not maximumLineLength: 120 characters authorized while 323 is expected. Am i wrong?
Please try this Elasticsearch reindex procedure and check your UI again and/or re-scan your project and modify just that one rule for maximum line length.
Hi @Joe,
Elasticsearch reindex did not solve the problem. The maximumLineLenght is still ignored. Lines with 127 and 174 characters should not trigger an issue.
I think I’m able to replicate what you are doing now. It seems that when the severity is changed to “INFO” instead of the default “MAJOR”, then the issue will persist and ignore the custom maximumLineLength value. That is a minor bug that we can handle. I’ll report this to the devs.
EDIT: Actually, INFO level makes sense. From Issues:
INFO
Neither a bug nor a quality flaw, just a finding.
That means it’s a finding and not a true “issue” issue. Can you try adjusting the severity to not be INFO and see if the issue disappears (modify the quality profile, make sure the project uses that quality profile, rescan)?
Joe
EDIT: Oops, I reviewed your last screenshot that shows the issue with CRITICAL severity. I’ll add this to the notes when I mention it to the devs:
If the severity is left as the default MAJOR, then the adjusted maximumLineLength value is respected.
If any other severity is chosen (BLOCKER, CRITICAL, MINOR, INFO), then the adjusted maximumLineLength value is ignored and the issue is shown.
The use case
I want to increase up to 200 characters the authorized maximum line length (default 120 characters) on swiftlint profile
Method
Apply to the project an overrided swiftlint profile and rule swift:S103 (Lines should not be too long) and set maximumLineLength: 200. This is the only one rule on this profile.
A analyzed swift file with 3 test lines
Test case 1: 56 characters
Lower than 120 characters (and 200 ) let names = [“Chris”, “Alex”, “Ewa”, “Barry”, “Daniell”] Expected: no issue from S103
Test case 2: 123 characters
Greater than 120 characters but lower than 200 characters let names2 = [“Chris”, “Alex”, “Ewa”, “Barry”, “Daniella12345645651321654732152732132455321354521324113546313543213r14gez”] Expected: no issue from S103
Test case 3: 203 characters let names3 = [“Chris”, “Alex”, “Ewa”, “Barry”, “Daniella12345645651321654732152732132455321354521324113546313543213r14gez4gqzegerqh3g1er1232131541320.2132143354543252he43rh5e3r2h1re3h54e3rh1r3eh2g1er3h”] Expected: issue raised from S103
Tests
Whatever severity is applied, S103 overridings seems to ignore de maximumLineLength and keep default value: 120 characters.
Tests cases 2 & 3 raise an issue while only test 3 should.