Skip to content

Commit

Permalink
Link to Core Coding Standards
Browse files Browse the repository at this point in the history
Props @mrwweb
Fixes #38
  • Loading branch information
Ipstenu committed Sep 1, 2016
1 parent 1547dfc commit c06b956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guideline-04.md
@@ -1,3 +1,3 @@
**4. Keep your code (mostly) human readable.**

Intentionally obscuring code by hiding it with techniques or systems similar to `p,a,c,k,e,r`'s obfuscate feature, uglify's mangle, or unclear naming conventions such as `$z12sdf813d`, is not permitted in the directory. Unfortunately, many people use such methods to try and hide malicious code, such as backdoors or tracking. In addition, WordPress code is intended for anyone to be able to learn from, edit, and adapt. Making code non-human readable forces future developers to face an unnecessary hurdle. Minified code may be used, however the unminified versions should be included whenever possible.
Intentionally obscuring code by hiding it with techniques or systems similar to `p,a,c,k,e,r`'s obfuscate feature, uglify's mangle, or unclear naming conventions such as `$z12sdf813d`, is not permitted in the directory. Unfortunately, many people use such methods to try and hide malicious code, such as backdoors or tracking. In addition, WordPress code is intended for anyone to be able to learn from, edit, and adapt. Making code non-human readable forces future developers to face an unnecessary hurdle. Minified code may be used, however the unminified versions should be included whenever possible. We recommend following [WordPress Core Coding Standards](https://make.wordpress.org/core/handbook/best-practices/coding-standards/)

0 comments on commit c06b956

Please sign in to comment.