flake8-use-fstring

时间:2024-06-08 08:16:47
【文件属性】:

文件名称:flake8-use-fstring

文件大小:11KB

文件格式:ZIP

更新时间:2024-06-08 08:16:47

Python

flake8-use-fstring master (发行版) develop (主要) 通过强迫自己使用f字符串来快速进入现代Python。 显然,仅适用于python>=3.6 。 安装 pip install flake8-use-fstring 报告的错误 FS001 :使用%格式。 FS002 :使用.format格式。 FS003 :f字符串缺少前缀(默认情况下忽略)。 可用配置 --percent-greedy和--format-greedy 该插件检查每个python语句(逻辑行),并查看是否使用%或.format 。 由于flake8只是代码样式检查器,而不是类型检查器,因此无法确定%或.format之前的值是否是字符串。 因此,引入了贪婪级别来控制插件何时应报告错误。 级别0(默认):仅当%或.format之前的值是字符串文字时,才报告错误。 级别


【文件预览】:
flake8-use-fstring-develop
----setup.py(2KB)
----.gitignore(163B)
----.travis.yml(226B)
----MANIFEST.in(26B)
----LICENSE(1KB)
----flake8_use_fstring()
--------__init__.py(20B)
--------base.py(3KB)
--------format.py(780B)
--------percent.py(407B)
--------prefix.py(2KB)
----.github()
--------workflows()
----README.md(3KB)
----tests()
--------conftest.py(1KB)
--------__init__.py(0B)
--------example.py(757B)
--------test_00.py(3KB)
----.coveragerc(34B)
----.flake8(87B)

网友评论