TheNinth

Markdown

Jul 30th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!

This page contains some notes for hacking on cuwo.


Style and Convention

In cuwo, we use PEP8 as our coding style. If you are not familiar with it, you can find it here.

Editors like Sublime Text 2 support automatic checking/linting for PEP8 through SublimeLinter. Other editors usually have similar packages, so enable linting in your editor if supported.


Please make sure to test your changes before committing them!


Important note on commands:

@command
@admin

is incorrect and will have different results to

@admin
@command

Use the latter when creating elevated commands.


(This page still needs work!)
Add Comment
Please, Sign In to add comment