Browse Source

Update README.

pull/1/head
Oleksii Trekhleb 5 years ago
parent
commit
66a4139af6
  1. 14
      README.md

14
README.md

@ -32,14 +32,14 @@ let age = 42;
Celebrate the difference. Celebrate the difference.
Good 👍🏻 _Good 👍🏻_
```javascript ```javascript
let wWidth = 640; let wWidth = 640;
let w_height = 480; let w_height = 480;
``` ```
Bad 👎🏻 _Bad 👎🏻_
```javascript ```javascript
let windowWidth = 640; let windowWidth = 640;
@ -48,15 +48,15 @@ let windowHeight = 480;
### 💩 Never write comments ### 💩 Never write comments
No one is going to write your code anyway. No one is going to read your code anyway.
Good 👍🏻 _Good 👍🏻_
```javascript ```javascript
const cdr = 700; const cdr = 700;
``` ```
Bad 👎🏻 _Bad 👎🏻_
```javascript ```javascript
// Callback function debounce rate in milliseconds. // Callback function debounce rate in milliseconds.
@ -65,7 +65,9 @@ const callbackDebounceRate = 700;
### 💩 Always write comments in your native language ### 💩 Always write comments in your native language
_If your native language is English you may violate this rule_ If you violated the "No comments" principle then at least try to write comments in you local language. You don't plan to have international teams in the future anyways.
If your native language is English you may violate this rule.
Good 👍🏻 Good 👍🏻

Loading…
Cancel
Save