diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-15 18:38:12 +0100 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-12-15 18:38:12 +0100 |
commit | 94756c3a3f4ad64e61acca049a01c6e4b6de4530 (patch) | |
tree | 4dbd3347983c91d6ad5ebef7b05ed17c0a22727a /man/symilar.1 | |
parent | 6def4f2e66906633a229f00e561ab7022f263d1f (diff) | |
download | pylint-git-94756c3a3f4ad64e61acca049a01c6e4b6de4530.tar.gz |
add manpage for symilar
Diffstat (limited to 'man/symilar.1')
-rw-r--r-- | man/symilar.1 | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/man/symilar.1 b/man/symilar.1 new file mode 100644 index 000000000..7975db526 --- /dev/null +++ b/man/symilar.1 @@ -0,0 +1,37 @@ +.TH symilar 1 "December 15, 2010" symilar + +.SH NAME +.B symilar +\- tool for checking similarities in different files + +.SH SYNOPSIS +.B symilar +[ +.I options +] [ +.I <files> +] + +.SH DESCRIPTION +.B symilar +is a tool for searching blocks of identical lines in different files. It can be +used to find copy pasted blocks of code, or stuff that could be refactored. +Differences concerning only stuff behind a '#' (Python comments) can be ignored. +The size of identical blocks can be optionally modified. +.B symilar +\'s functionality is integrated in +.B pylint +with the refactoring message 'R0801'. + +.SH OPTIONS + +.IP "-h, --help" +show help message and exit +.IP "-d <min_duplicated_lines>, --duplicates <min_duplicated_lines>" +minimum number of identical lines that should trigger a similarity message. +Default is 4. So if it finds 3 identical lines, there will be no message, but +4 identical lines will be mentionned. +.IP "-i, --ignore-comments" +ignore differences concerning only stuff behind a '#' (Python comments). This +means that if just a comment was added, the message will still be triggered. + |