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.
12 lines
998 B
12 lines
998 B
|
3 years ago
|
# Contributing to Mythic Dungeon Tools
|
||
|
|
|
||
|
|
- This repository comes with a `.editorconfig` file, so the following requirements will be taken care of if you have [EditorConfig](https://editorconfig.org/) installed. An editorconfig plugin for your specific editor is recommended.
|
||
|
|
- Tabs consist of 2 spaces.
|
||
|
|
- Files are ending with a newline.
|
||
|
|
- Line endings in addon files must be Windows-Style (CRLF).
|
||
|
|
- No trailing whitespace at the end of a line.
|
||
|
|
- All user-facing strings must be localized via using `L["localized phrase"]`. You must use double quoted strings, and name the localization table (found at `MDT.L`) `L` in your code for this to work properly
|
||
|
|
- We use the [curseforge localization](https://www.curseforge.com/wow/addons/mythic-dungeon-tools/localization) service. You can however submit pull requests for localizations if you wish to.
|
||
|
|
- When editing enemy data please use the ingame editor available via /mdt devmode and export your changes via Enemy>Export to Lua.
|
||
|
|
|