Must-share information:
- I am using SonarQube 7.9.1.
- I am trying to ensure that all bugs that would be found by use of a library in a certain way are found.
- I have run SonarQube with the default setting to ignore what is in my .gitignore file (so
distis ignored).
I am wondering whether I might miss finding bugs if I do not analyze dist. If my function foo() calls a library function bar() in a way that creates a bug that SonarQube would report only because of the way in which foo() uses bar(). (In other words it’s the particular combination that causes the bug.)
Is this only doable if I do analyze the dist folder populated by Webpack? Or can this be achieved without analyzing dist?