We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5427307 commit 8ba8e8cCopy full SHA for 8ba8e8c
src/configs/disables.ts
@@ -5,15 +5,15 @@ import { GLOB_SRC, GLOB_SRC_EXT } from '../globs'
5
export async function disables(): Promise<TypedFlatConfigItem[]> {
6
return [
7
{
8
- files: [`scripts/${GLOB_SRC}`],
+ files: [`**/scripts/${GLOB_SRC}`],
9
name: 'antfu/disables/scripts',
10
rules: {
11
'no-console': 'off',
12
'ts/explicit-function-return-type': 'off',
13
},
14
15
16
- files: [`cli/${GLOB_SRC}`, `cli.${GLOB_SRC_EXT}`],
+ files: [`**/cli/${GLOB_SRC}`, `**/cli.${GLOB_SRC_EXT}`],
17
name: 'antfu/disables/cli',
18
19
0 commit comments