Use of SonarLint with TDD

How do you write TDD code w/ SonarLint enabled? A standard way of writing TDD code is to create a set of failing tests then add the code to make them pass. With SonarLint enabled I cannot write a set of empty tests that I intend to implement because empty methods throw a build breaking exception. I cannot comment them out temporarily because commented code is also a build breaking exception. I cannot temporarily disable SonarLint because that requires shutting down and restarting VS (what a pain), and it seems to lack any configuration options. I should mention that we do have the “Treat all Warnings as Errors” turned on. Any Ideas?