PackageDescription | passive Python syntax checker
Frosted is a fork of pyflakes that aims at more open contribution from the
outside public, a smaller more maintainable code base, and a better Python
checker for all.
.
Improvements in Frosted over pyflakes
.
* Several improvements and fixes that have stayed open (and ignored) on
mainline pyflakes have been integrated.
* Lots of code has been re-factored and simplified, Frosted aims to be faster
and leaner then pyflakes ever was.
* Frosted adds the ability to configure which files should be checked, and
which errors should be ignored.
* Frosted implements the .editorconfig standard for configuration. This means
that only one configuration file is needed for isort, frosted, and all the
code editors working with a project may be using.
* Frosted uses a more logical, self-documenting, and standard terminal
interface. With pyflakes the default action without any arguments is to do
nothing (waiting for stdin), with Frosted an error and help message is
printed. |