├── .github └── workflows │ └── main.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── flake8_string_format.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── test_flake8_string_format.py └── tests └── files ├── README.rst ├── starred.py └── starred_py35.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/README.rst -------------------------------------------------------------------------------- /flake8_string_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/flake8_string_format.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/setup.py -------------------------------------------------------------------------------- /test_flake8_string_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/test_flake8_string_format.py -------------------------------------------------------------------------------- /tests/files/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/tests/files/README.rst -------------------------------------------------------------------------------- /tests/files/starred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/tests/files/starred.py -------------------------------------------------------------------------------- /tests/files/starred_py35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xZise/flake8-string-format/HEAD/tests/files/starred_py35.py --------------------------------------------------------------------------------