mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
5874fc3d0a
Follow up to https://github.com/denoland/deno/pull/19084. This commit adds support for globs in the configuration file as well as CLI arguments for files. With this change users can now use glob syntax for "include" and "exclude" fields, like so: ```json { "lint": { "include": [ "directory/test*.ts", "other_dir/" ], "exclude": [ "other_dir/foo*.ts", "nested/nested2/*" ] }, "test": { "include": [ "data/test*.ts", "nested/", "tests/test[1-9].ts" ], "exclude": [ "nested/foo?.ts", "nested/nested2/*" ] } } ``` Or in CLI args like so: ``` // notice quotes here; these values will be passed to Deno verbatim // and deno will perform glob expansion $ deno fmt --ignore="data/*.ts" $ deno lint "data/**/*.ts" ``` Closes https://github.com/denoland/deno/issues/17971 Closes https://github.com/denoland/deno/issues/6365
11 lines
203 B
JSON
11 lines
203 B
JSON
{
|
|
"test": {
|
|
"include": [
|
|
"glob/data/test1.?s",
|
|
"glob/nested/foo/*.ts",
|
|
"glob/nested/fizz/*.ts",
|
|
"glob/pages/[id].ts"
|
|
],
|
|
"exclude": ["glob/nested/**/*bazz.ts"]
|
|
}
|
|
}
|