dart-best-practices

作者: flutter

建議優先使用多行字串( ''' )而非透過 + 和 \n 拼接字串,特別是在處理 SQL 查詢、HTML 或 PEM 編碼金鑰等大型文字區塊時。這樣能提升可讀性,並透過自然換行避免 lines_longer_than_80_chars 的 lint 錯誤。

npx skills add https://github.com/flutter/skills --skill dart-best-practices