Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2212)

Unified Diff: Tools/Scripts/webkitpy/thirdparty/pylint/man/symilar.1

Issue 18418010: Check in the thirdparty libs needed for webkitpy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Tools/Scripts/webkitpy/thirdparty/pylint/man/symilar.1
diff --git a/Tools/Scripts/webkitpy/thirdparty/pylint/man/symilar.1 b/Tools/Scripts/webkitpy/thirdparty/pylint/man/symilar.1
new file mode 100644
index 0000000000000000000000000000000000000000..7975db526a8a19cd34cf324b1d995d12076aa210
--- /dev/null
+++ b/Tools/Scripts/webkitpy/thirdparty/pylint/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.
+

Powered by Google App Engine
This is Rietveld 408576698