2024-08-20 21:38:06 +03:00
|
|
|
{
|
|
|
|
"tests": {
|
|
|
|
"star": {
|
|
|
|
"args": "check *.ts",
|
|
|
|
"output": "Check [WILDLINE]main.ts\n",
|
|
|
|
"exitCode": 0
|
|
|
|
},
|
|
|
|
"star_not_found": {
|
|
|
|
"args": "check *.js",
|
|
|
|
"output": "Warning No matching files found.\n",
|
|
|
|
"exitCode": 0
|
|
|
|
},
|
|
|
|
"glob_star": {
|
|
|
|
"args": "check **/*.ts",
|
2025-01-28 10:49:58 -05:00
|
|
|
"output": "Check [WILDLINE]main.ts\nCheck [WILDLINE]sub_dir/main.ts\nTS2322[WILDCARD]",
|
2024-08-20 21:38:06 +03:00
|
|
|
"exitCode": 1
|
|
|
|
},
|
|
|
|
"sub_dir": {
|
|
|
|
"args": "check sub_dir",
|
2025-01-28 10:49:58 -05:00
|
|
|
"output": "Check [WILDLINE]sub_dir/main.ts\nTS2322[WILDCARD]",
|
2024-08-20 21:38:06 +03:00
|
|
|
"exitCode": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|