pyls 配置
设置代码行为 120 字 ~/.config/pycodestyle pycodestyle 官方文档 https://www.osgeo.cn/pycodestyle/intro.html 在项目级别,a setup.cfg 文件或 tox.ini 如果存在,则读取文件。如果这些文件都没有 [pycodestyle] 节,未加载项目特定的配置。 [pycodestyle] # count = False # ignore = E226,E302,E41 max-line-length = 120 # statistics = True pyls 的main #!/opt/miniconda3/bin/python # -*- coding: utf-8 -*- import re import sys from pyls.__main__ import main if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit(main()) python_ls.py 定义了 start_io_lang_server start_tcp_lang_server LINT_DEBOUNCE_S = 0.5 # 500 ms PARENT