mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Loader: support .wasm imports (#3328)
* loader: support .wasm imports * http_server: true * Support named exports * Clippy
This commit is contained in:
parent
fdf0ede2ac
commit
4189cc1ab5
20 changed files with 388 additions and 9 deletions
|
@ -39,9 +39,10 @@ def eslint():
|
|||
script = os.path.join(third_party_path, "node_modules", "eslint", "bin",
|
||||
"eslint")
|
||||
# Find all *directories* in the main repo that contain .ts/.js files.
|
||||
source_files = git_ls_files(
|
||||
root_path,
|
||||
["*.js", "*.ts", ":!:std/prettier/vendor/*", ":!:std/**/testdata/*"])
|
||||
source_files = git_ls_files(root_path, [
|
||||
"*.js", "*.ts", ":!:std/prettier/vendor/*", ":!:std/**/testdata/*",
|
||||
":!:cli/compilers/*"
|
||||
])
|
||||
source_dirs = set([os.path.dirname(f) for f in source_files])
|
||||
# Within the source dirs, eslint does its own globbing, taking into account
|
||||
# the exclusion rules listed in '.eslintignore'.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue