Metadata-Version: 2.1
Name: misspellings_lib
Version: 1.0.2
Summary: A tool to detect misspellings with opinionated additions
Home-page: https://github.com/mazulo/misspellings
Download-URL: https://github.com/mazulo/misspellings/tarball/1.0.2
Author: Patrick Mazulo
Author-email: pmazulo@gmail.com
License: GNU General Public License v3
Keywords: check,code,spelling,spellcheck
Platform: POSIX
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
License-File: LICENSE

============
misspellings
============

.. image:: https://travis-ci.org/myint/misspellings.svg?branch=master
    :target: https://travis-ci.org/myint/misspellings
    :alt: Build status


Spell checker for code
======================

This is a Python library and tool to check for misspelled words in
source code. It does this by looking for words from a list of
common misspellings. The dictionary it uses to do this is based
on the Wikipedia list of common misspellings.

* http://en.wikipedia.org/wiki/Wikipedia:Lists_of_common_misspellings/For_machines

The list has been slightly modified to remove some changes that
cause a number of false positives. In particular ``ok->OK`` was
removed (ok is frequently used in perl tests for instance).


Opinionated version
===================

This includes custom additions that should be considered opinionated, such as
cancellation vs. cancelation. This is not recommended for anyone's use.


Example
=======

To try it out, merely run the following (using an old coreutils
source tree as an example)::

    $ git clone git://git.sv.gnu.org/coreutils -b v8.10 coreutils
    $ find coreutils -name '*.c' | misspellings -f -
    coreutils/src/cat.c:754: efficency -> "efficiency"
    coreutils/src/comm.c:198: funtion -> "function"
    coreutils/src/expr.c:21: seperate -> "separate"
    coreutils/src/pr.c:1417: accomodate -> "accommodate"
    coreutils/src/tac.c:342: unneccessary -> "unnecessary"
    coreutils/src/test.c:91: supressed -> "suppressed"


Contributions
=============

Contributions are welcome! Please add unit tests for new features
or bug fixes. To run all the unit tests run ``./setup.py test``.
If you have `tox`_ installed, just run ``tox``.

You can review `coverage`_ of added tests by running
``coverage run setup.py test`` and then running
``coverage report -m``.

Note that tests are run on `Travis`_ for all supported python
versions whenever the tree on github is pushed to.

The packaged version is available via ``pip`` or ``easy_install``
as ``misspellings``. The project page is on `pypi`_:

The source code is available in the following locations:

- Bitbucket: https://bitbucket.org/lyda/misspell-check/src
- code.google: http://code.google.com/p/misspell-check/
- Github: https://github.com/lyda/misspell-check
- Gitorious: https://gitorious.org/uu/misspell-check
- Sourceforge: https://sourceforge.net/p/misspell-check

Pull requests on any of those platforms or emailed patches are fine.

To do
=====

Some items on the TODO list:

* Implement option to interactively fix files.
* Give some thought to supporting multiple languages?
* Might a "common misspellings" list be different for different English
  users - might an American make one set of mistakes while a German
  writing English make another? Source of this data?
* Fix sed flag.  Have it support sed -i optionally, have it output all
  unambiguous sed commands, have it be more careful on what it
  replaces. It might also be an idea to have a perl output option.
* Use generators to allow finding errors as you go. Currently misspellings
  grabs all files first, then checks them, which can take a while.
* Lacking tests for misspellings cli.


Credits
=======

- `Kevin Lyda`_: Initial shell goo and python version.
- `Steven Myint`_: Better python idioms and style. Mixed case support.
  Travis/tox support.
- `Maciej Blizinski`_: Potential use in `OpenCSW`_ pushed move to python.
- `Ville Skyttä`_: Sped up wordification, editor-friendly reporting.

.. _`tox`: https://pypi.python.org/pypi/tox
.. _`coverage`: https://pypi.python.org/pypi/coverage
.. _`Travis`: https://travis-ci.org/lyda/misspell-check
.. _`Kevin Lyda`: https://github.com/lyda
.. _`Steven Myint`: https://github.com/myint
.. _`Maciej Blizinski`: https://github.com/automatthias
.. _`Ville Skyttä`: https://github.com/scop
.. _`pypi`: https://pypi.python.org/pypi/misspellings
.. _`OpenCSW`: http://www.opencsw.org/
