0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Flutter "Name source file using 'lowercase_with_underscores' 警告の対処法

Last updated at Posted at 2023-01-09

背景

  • Memoクラスを作成するため、Memo.dartファイルを作成してそこにMemoクラスを定義しました。
  • すると表題の警告をくらったので、その対処法を記載します。

Name source file using 'lowercase_with_underscores'

画像のように1行目の`class'の下に波線が表示され、確認すると「lowercase_with_underscores」を使えと言われます。Documentationは公式ドキュメントへ誘導されます。
ss 2023-01-09 15.07.38.png

公式ドキュメント

  • 一部ファイルシステムでは大文字と小文字が区別されないため、区切り文字にアンダースコアを使用することを推奨しているようです。

英語
image.png

日本語訳
image.png

まとめ

  • ファイル名は大文字小文字で区別されないことから、区切り文字にアンダースコアを使用する。
  • 今回の場合はMemo.dartmemo_class.dartにRefactorすることで対応した。
  • 多分Memo.dartmemo.dartとするだけでもOK。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?