I am currently working on a TypeScript repository that has both a 'src' and 'tests' folder. My goal is to set up biome for this project. Specifically, I want to enforce strict linting rules in the 'src' folder, but allow the usage of 'any' in the 'tests' folder.
I attempted to configure 'biome.json' to permit the 'lint/suspicious/noExplicitAny' rule, but unfortunately it was also applied to the 'src' folder where I need stricter enforcement.
Is there a method to accomplish what I'm looking to achieve?