- ベストアンサー
EditorConfig ファイルの作成方法
Microsoft Visual Studio Community 2022 (64 ビット) Version 17.10.5 Pythonモジュール書いてます。utf-8になってくれないので.editorconfigファイルで設定する方法を知りたいです。 追加→New editorconfigでeditorconfigを生成したのですが、下記の=editorconfig=ができてます。 そこに下記をテキストエディタで加えたのですが、やはりutf-8になってくれません(SyntaxError: (unicode error) 'utf-8' codec can't decode byte 0x8d in position 0: invalid start byteが出ています)。 [*.py] charset = utf-8 このファイルをプロジェクトに加えるなどの作業が必要でしょうか? それともこのeditorconfigファイルの内容がダメなんでしょうか? ===editorconfig=== # Visual Studio で、C++ の設定で .editorconfig ファイルが生成されました。 root = true [*.py] charset = utf-8 [*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}] # Visual C++ コード スタイルの設定 cpp_generate_documentation_comments = xml # Visual C++ の書式設定 cpp_indent_braces = false (長いので以下略) ===
- みんなの回答 (2)
- 専門家の回答
お礼
ご回答ありがとうございます。解決しました。 原因は下記URLのその2でした。 https://program-edu.com/python/post-2171/ # coding: shift-jis をコードの先頭に書き加えることで解決しました。