summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-12-15 18:38:12 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-12-15 18:38:12 +0100
commitf9c7e864a01c146c22fb0ba56c470e89b0e7c082 (patch)
treed8fc911e5205409c8393a490ddc01368e034feec /man
parent423976d6bbf5eba6aece6e7f3dc4d1588f8258c4 (diff)
downloadpylint-f9c7e864a01c146c22fb0ba56c470e89b0e7c082.tar.gz
add manpage for symilar
Diffstat (limited to 'man')
-rw-r--r--man/symilar.137
1 files changed, 37 insertions, 0 deletions
diff --git a/man/symilar.1 b/man/symilar.1
new file mode 100644
index 0000000..7975db5
--- /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.
+