Skip to content
Cody Scott edited this page Aug 12, 2013 · 7 revisions

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:

@admin
@command

is incorrect and will have different results to

@command
@admin

Use the latter when creating elevated commands.

Click here for more information on creating elevated/restricted commands.


######(This page still needs work!)

Clone this wiki locally