Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Languages ​​like Japanese break each word before and after the character limit #120

Open
ryuapp opened this issue Aug 22, 2024 · 1 comment

Comments

@ryuapp
Copy link

ryuapp commented Aug 22, 2024

Languages ​​like Japanese do not use space as delimiters, so line breaks only occur when English words appears in a sentence. Sentences in such languages ​​are therefore better separated by words, regardless of white space.

Input:

Denoは、最新のWeb用のオープンソースJavaScriptランタイムです。Denoは、構成不要のTypeScript、比類のないセキュリティ、完全な組み込みツールチェーンを備えたWeb標準に基づいて構築されており、JavaScriptを使用するための最も簡単で生産的な方法です。Deno Deployは簡単にDenoのプロジェクトがデプロイ出来て便利です。

Output(deno fmt --prose-wrap always):

Denoは、最新のWeb用のオープンソースJavaScriptランタイムです。Denoは、構成不要のTypeScript、比類のないセキュリティ、完全な組み込みツールチェーンを備えたWeb標準に基づいて構築されており、JavaScriptを使用するための最も簡単で生産的な方法です。Deno
Deployは簡単にDenoのプロジェクトがデプロイ出来て便利です。

Output(npx prettier . --write --prose-wrap always)

Denoは、最新のWeb用のオープンソースJavaScriptランタイムです。Denoは、構成不要の
TypeScript、比類のないセキュリティ、完全な組み込みツールチェーンを備えたWeb標準
に基づいて構築されており、JavaScriptを使用するための最も簡単で生産的な方法で
す。Deno Deployは簡単にDenoのプロジェクトがデプロイ出来て便利です。
@tats-u
Copy link

tats-u commented Oct 21, 2024

Current Prettier's format is not compatible with Chromium & WebKit.
Its behavior is going to be changed soon: prettier/prettier#16691 prettier/prettier#16710

The current output by Deno is the best as for now considering the behavior of each browser:

Denoは、最新のWeb用のオープンソースJavaScriptランタイムです。Denoは、構成不要のTypeScript、比類のないセキュリティ、完全な組み込みツールチェーンを備えたWeb標準に基づいて構築されており、JavaScriptを使用するための最も簡単で生産的な方法です。Deno
Deployは簡単にDenoのプロジェクトがデプロイ出来て便利です。

However, dprint can afford to append additional options unlike Prettier or Biome, so we can switch the behavior.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants