Our project has a unit testing directory, where tests are calling private functions (they start with _). For tests code the linter reports errors, that the private functions are called, but for our project we want to ignore them.
There only way to configure the linter I found from the docs is with comments and cli args, which is not scalable for the team or the whole bunch of unit tests files with hundreds of calls.
Our project has a unit testing directory, where tests are calling private functions (they start with
_). For tests code the linter reports errors, that the private functions are called, but for our project we want to ignore them.There only way to configure the linter I found from the docs is with comments and cli args, which is not scalable for the team or the whole bunch of unit tests files with hundreds of calls.