18

以下を使用してyapfをインストールしました:

conda install yapf

.vscode/settings.jsonファイルに次の行を追加します。

{
    //"python.linting.pylintEnabled": true,
    //"python.linting.pycodestyleEnabled": false,
    //"python.linting.flake8Enabled": true,
    "python.formatting.provider": "yapf",
    "python.formatting.yapfArgs": [
        " — style",
        "{based_on_style: pep8, indent_width: 4}"
    ],
    "python.linting.enabled": true,
}

しかし、私はそれを使用する方法を理解できません - それは悪い形式のスクリプトでエラーを表示しません:

import pandas as pd

class MyClass(object):
    def __init__(self, some_value: int):
        self.value = some_value
    def one_more_function(self, another_value):
        print(another_value)
myObject = MyClass(45)
myObject.one_more_function(2)
my__object2 = MyClass(324)

    print('ok')
def some_foo():
    """
    """
    pass
4

3 に答える 3

1

2022年からの回答

「GUI」を好む場合は、これらの値を設定 (ファイル -> 設定 -> 設定) に直接入力することもできます。

ここに画像の説明を入力

于 2022-02-11T10:18:25.773 に答える