no-empty-file
isn't configurable
A file with comments but without code is considered empty. More finesse would be appreciated.
Example: I would like to disallow empty files in general, but I would like to allow *.test.ts(x) files to contain only comments
Use case:
// File: useScreenSizeHint.test.ts
// No need to write tests here, useScreenSizeHint.ts source code is already tested by ScreenSizeHintProvider.test.tsx
ESLint configuration:
rules: {
'unicorn/no-empty-file': 'error'
},
overrides: [
{
files: ['**/*.test.ts', '**/*.test.tsx'],
rules: {
// Empty test files with comments are legit
'unicorn/no-empty-file': ['error', { allow: ['comments'] }]
},
}
]
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too