# $Id$ This file contains some brief instructions on contributing to the Metasploit Framework. Code Style ========== In order to maintain consistentcy and readability, we ask that you adhere to the following style guidlines: - Hard tabs, not spaces - Try to keep your lines under 100 columns (assuming four-space tabs) - do; end instead of {} for a block Code No-Nos =========== 1. Don't print to standard output. Doing so means that users of interfaces other than msfconsole, such as msfrpc and msfweb, won't see your output. You can use print_line to accomplish the same thing as puts. 2. Don't use "sleep". It has been known to cause issues with multi-threaded programs on various platforms. Instead, we use "select(nil, nil, nil,