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
46
46
47
47
#### Coding Style
48
48
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/ )
51
50
- Command to install JavaScript Standard Style
52
51
```
53
- $ npm install standard --save-dev
54
- ```
52
+ $ npm install standard --save-dev
53
+ ```
55
54
- Usage
56
55
```
57
- $ standard
58
- ```
56
+ $ standard MyFile.js // if that fails, try: npx standard MyFile.js
57
+ ```
59
58
60
59
- Use camelCase for identifier names (variables and functions)
61
60
- Names start with a letter
You can’t perform that action at this time.
0 commit comments