Skip to content

Commit

Permalink
Convert em tag to markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
AkeluX committed May 17, 2017
1 parent 78196c1 commit 3364838
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WebWorldWindDesignAndCodingGuidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@
* The audience for exceptions is not primarily the user of the client program, but the application or World Wind developer. Throw exceptions that would let them know immediately that they're using faulty logic or data.

## Code Formatting

* All Web World Wind code follows the same style and conventions and looks the same in style and format.
* Web World Wind code is heavily commented. The comments describe both the what and how of a block of code.
* Web World Wind variable and function names are descriptive.
* World Wind follows the coding conventions described in Chapter 2 of the book <em>JavaScript Patterns</em>. These conventions are encoded in the WebStorm project files.
* World Wind follows the coding conventions described in Chapter 2 of the book *JavaScript Patterns*. These conventions are encoded in the WebStorm project files.
* Line length is 120 characters and indentation widths are 4 characters.
* Variable and function names use camel case. The exception is constructors, which capitalize their first letter. Constants are in all upper case with words separated by underscores.
* White space is preferred over packing code into a small space. Use white space liberally. Separate functional blocks of code with vertical white space. Think of code within a function as a sequence of paragraphs and separate each with a blank line.
Expand Down

0 comments on commit 3364838

Please sign in to comment.