realm / SwiftLint

A tool to enforce Swift style and conventions.
https://realm.github.io/SwiftLint
MIT License
18.6k stars 2.22k forks source link

Check for spelling errors #1128

Open delebedev opened 7 years ago

delebedev commented 7 years ago

From http://fauxpasapp.com/rules/#rule-Spelling

Applies on systems that have either the en_US or the en_GB dictionary installed.
Warns if some words in code symbol names are spelled incorrectly.

This rule expects code symbol names to be in English (US and/or GB).

Both linux and mac os have /usr/share/dict/words which could probably be used for this, however performance implications should be considered.

Coeur commented 7 years ago

Note that, in the mean time, AppCode is providing spelling checking for variable names and comments.

Leonid-Kokhnovych-Rivian commented 3 years ago

It would be really valuable to also support this one. Can anyone comment on what would be needed in order to support it?