垃圾代码书写准则
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Oleksii Trekhleb 3dc10e49f7 Update README. 5 years ago
.gitignore Add .gitignore. 5 years ago
README.md Update README. 5 years ago

README.md

State-of-the-Art Shitcode Principles

State-of-the-art Shitcode

Get Your Badge

If your repository follows the state-of-the-art shitcode principles you may use the "state-of-the-art shitcode" badge:

[![State-of-the-art Shitcode](https://img.shields.io/static/v1?label=State-of-the-art&message=Shitcode&color=7B5804)](https://github.com/trekhleb/state-of-the-art-shitcode)

The Principles

💩 Name variables in a way like your code is already obfuscated.

Good 👍🏻:

let a = 42;

Bad 👎🏻:

let age = 42

💩 Always write comments in your local language.

You don’t want it to be readable by oversees teams.

👍🏻 Good:

// Обновляем состояние компонента
setAge(42)

👎🏻 Bad:

// Update component state
setAge(42)