mirror of
https://github.com/denoland/deno.git
synced 2025-12-23 08:48:24 +00:00
Some checks are pending
ci / lint debug linux-x86_64 (push) Blocked by required conditions
ci / lint debug macos-x86_64 (push) Blocked by required conditions
ci / lint debug windows-x86_64 (push) Blocked by required conditions
ci / test debug linux-x86_64 (push) Blocked by required conditions
ci / test release linux-x86_64 (push) Blocked by required conditions
ci / test debug macos-x86_64 (push) Blocked by required conditions
ci / test release macos-x86_64 (push) Blocked by required conditions
ci / test debug windows-x86_64 (push) Blocked by required conditions
ci / test release windows-x86_64 (push) Blocked by required conditions
ci / build libs (push) Blocked by required conditions
ci / pre-build (push) Waiting to run
ci / test debug linux-aarch64 (push) Blocked by required conditions
ci / test release linux-aarch64 (push) Blocked by required conditions
ci / test debug macos-aarch64 (push) Blocked by required conditions
ci / test release macos-aarch64 (push) Blocked by required conditions
ci / bench release linux-x86_64 (push) Blocked by required conditions
ci / publish canary (push) Blocked by required conditions
38 lines
3.7 KiB
TOML
38 lines
3.7 KiB
TOML
disallowed-methods = [
|
|
{ path = "std::env::current_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::canonicalize", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::is_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::is_file", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::is_symlink", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::metadata", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::read_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::read_link", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::symlink_metadata", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::try_exists", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::env::set_current_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::env::temp_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::canonicalize", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::copy", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::create_dir_all", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::create_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::DirBuilder::new", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::hard_link", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::metadata", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::OpenOptions::new", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::read_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::read_link", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::read_to_string", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::read", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::remove_dir_all", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::remove_dir", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::remove_file", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::rename", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::set_permissions", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::symlink_metadata", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::fs::write", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::canonicalize", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "std::path::Path::exists", reason = "File system operations should be done using sys_traits" },
|
|
{ path = "url::Url::to_file_path", reason = "Use deno_path_util instead so it works in Wasm" },
|
|
{ path = "url::Url::from_file_path", reason = "Use deno_path_util instead so it works in Wasm" },
|
|
{ path = "url::Url::from_directory_path", reason = "Use deno_path_util instead so it works in Wasm" },
|
|
]
|