File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -46,16 +46,15 @@ Algorithms in this repo should not be how-to examples for existing JavaScript pa
4646
4747#### Coding Style
4848
49- We want your work to be readable by others; therefore, we encourage you to note the following:
50- - Must follow [ JavaScript Standard Style] ( https://standardjs.com/ )
49+ To maximize the readability and correctness of our code, we require that new submissions follow [ JavaScript Standard Style] ( https://standardjs.com/ )
5150 - Command to install JavaScript Standard Style
5251 ```
53- $ npm install standard --save-dev
54- ```
52+ $ npm install standard --save-dev
53+ ```
5554 - Usage
5655 ```
57- $ standard
58- ```
56+ $ standard MyFile.js // if that fails, try: npx standard MyFile.js
57+ ```
5958
6059- Use camelCase for identifier names (variables and functions)
6160- Names start with a letter
You can’t perform that action at this time.
0 commit comments