summaryrefslogtreecommitdiff
path: root/cli/tools/fmt.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-09-18 12:15:13 -0700
committerGitHub <noreply@github.com>2024-09-18 21:15:13 +0200
commita1d0a427e807959666a6b23ae015e4e04659abf5 (patch)
treec588767979d1f7ded1830d042f737774b23addf6 /cli/tools/fmt.rs
parent7a41a939972b701e96cb70cbf0516595fefcae02 (diff)
feat: default to TS for file extension and support ext flag in more scenarios (#25472)
Closes #11220 Currently does lint, fmt, and repl
Diffstat (limited to 'cli/tools/fmt.rs')
-rw-r--r--cli/tools/fmt.rs51
1 files changed, 40 insertions, 11 deletions
diff --git a/cli/tools/fmt.rs b/cli/tools/fmt.rs
index 17ddf6c65..3f927545d 100644
--- a/cli/tools/fmt.rs
+++ b/cli/tools/fmt.rs
@@ -120,7 +120,13 @@ pub async fn format(
};
}
- format_files(caches, &fmt_flags, paths_with_options_batches).await?;
+ format_files(
+ caches,
+ cli_options,
+ &fmt_flags,
+ paths_with_options_batches,
+ )
+ .await?;
Ok(())
})
@@ -133,7 +139,8 @@ pub async fn format(
let caches = factory.caches()?;
let paths_with_options_batches =
resolve_paths_with_options_batches(cli_options, &fmt_flags)?;
- format_files(caches, &fmt_flags, paths_with_options_batches).await?;
+ format_files(caches, cli_options, &fmt_flags, paths_with_options_batches)
+ .await?;
}
Ok(())
@@ -172,6 +179,7 @@ fn resolve_paths_with_options_batches(
async fn format_files(
caches: &Arc<Caches>,
+ cli_options: &Arc<CliOptions>,
fmt_flags: &FmtFlags,
paths_with_options_batches: Vec<PathsWithOptions>,
) -> Result<(), AnyError> {
@@ -199,6 +207,7 @@ async fn format_files(
fmt_options.options,
fmt_options.unstable,
incremental_cache.clone(),
+ cli_options.ext_flag().clone(),
)
.await?;
incremental_cache.wait_completion().await;
@@ -211,11 +220,16 @@ fn collect_fmt_files(
cli_options: &CliOptions,
files: FilePatterns,
) -> Result<Vec<PathBuf>, AnyError> {
- FileCollector::new(|e| is_supported_ext_fmt(e.path))
- .ignore_git_folder()
- .ignore_node_modules()
- .set_vendor_folder(cli_options.vendor_dir_path().map(ToOwned::to_owned))
- .collect_file_patterns(&deno_config::fs::RealDenoConfigFs, files)
+ FileCollector::new(|e| {
+ cli_options.ext_flag().as_ref().is_some_and(|ext| {
+ is_supported_ext_fmt(Path::new(&format!("placeholder.{ext}")))
+ }) || is_supported_ext_fmt(e.path)
+ || e.path.extension().is_none()
+ })
+ .ignore_git_folder()
+ .ignore_node_modules()
+ .set_vendor_folder(cli_options.vendor_dir_path().map(ToOwned::to_owned))
+ .collect_file_patterns(&deno_config::fs::RealDenoConfigFs, files)
}
/// Formats markdown (using <https://github.com/dprint/dprint-plugin-markdown>) and its code blocks
@@ -449,8 +463,11 @@ pub fn format_file(
file_text: &str,
fmt_options: &FmtOptionsConfig,
unstable_options: &UnstableFmtOptions,
+ ext: Option<String>,
) -> Result<Option<String>, AnyError> {
- let ext = get_extension(file_path).unwrap_or_default();
+ let ext = ext
+ .or_else(|| get_extension(file_path))
+ .unwrap_or("ts".to_string());
match ext.as_str() {
"md" | "mkd" | "mkdn" | "mdwn" | "mdown" | "markdown" => {
@@ -493,14 +510,14 @@ pub fn format_file(
"ipynb" => dprint_plugin_jupyter::format_text(
file_text,
|file_path: &Path, file_text: String| {
- format_file(file_path, &file_text, fmt_options, unstable_options)
+ format_file(file_path, &file_text, fmt_options, unstable_options, None)
},
),
_ => {
let config = get_resolved_typescript_config(fmt_options);
dprint_plugin_typescript::format_text(
file_path,
- None,
+ Some(&ext),
file_text.to_string(),
&config,
)
@@ -526,6 +543,7 @@ trait Formatter {
fmt_options: FmtOptionsConfig,
unstable_options: UnstableFmtOptions,
incremental_cache: Arc<IncrementalCache>,
+ ext: Option<String>,
) -> Result<(), AnyError>;
fn finish(&self) -> Result<(), AnyError>;
@@ -545,6 +563,7 @@ impl Formatter for CheckFormatter {
fmt_options: FmtOptionsConfig,
unstable_options: UnstableFmtOptions,
incremental_cache: Arc<IncrementalCache>,
+ ext: Option<String>,
) -> Result<(), AnyError> {
// prevent threads outputting at the same time
let output_lock = Arc::new(Mutex::new(0));
@@ -566,6 +585,7 @@ impl Formatter for CheckFormatter {
&file_text,
&fmt_options,
&unstable_options,
+ ext.clone(),
) {
Ok(Some(formatted_text)) => {
not_formatted_files_count.fetch_add(1, Ordering::Relaxed);
@@ -643,6 +663,7 @@ impl Formatter for RealFormatter {
fmt_options: FmtOptionsConfig,
unstable_options: UnstableFmtOptions,
incremental_cache: Arc<IncrementalCache>,
+ ext: Option<String>,
) -> Result<(), AnyError> {
let output_lock = Arc::new(Mutex::new(0)); // prevent threads outputting at the same time
@@ -662,7 +683,13 @@ impl Formatter for RealFormatter {
&file_path,
&file_contents.text,
|file_path, file_text| {
- format_file(file_path, file_text, &fmt_options, &unstable_options)
+ format_file(
+ file_path,
+ file_text,
+ &fmt_options,
+ &unstable_options,
+ ext.clone(),
+ )
},
) {
Ok(Some(formatted_text)) => {
@@ -788,6 +815,7 @@ fn format_stdin(
&source,
&fmt_options.options,
&fmt_options.unstable,
+ None,
)?;
if fmt_flags.check {
#[allow(clippy::print_stdout)]
@@ -1269,6 +1297,7 @@ mod test {
..Default::default()
},
&UnstableFmtOptions::default(),
+ None,
)
.unwrap()
.unwrap();