Skip to content
shazahm1 edited this page Nov 6, 2013 · 1 revision

Connections developments follows the Gitflow workflow: http://nvie.com/posts/a-successful-git-branching-model/

Pull request to the develop branch only unless requested to pull request a feature branch.

PHP Coding Standards: http://make.wordpress.org/core/handbook/coding-standards/php/

HTML Coding Standards: http://make.wordpress.org/core/handbook/coding-standards/html/

CSS Coding Standards: http://make.wordpress.org/core/handbook/coding-standards/css/

JavaScript Coding Standards: http://make.wordpress.org/core/handbook/coding-standards/javascript/

Editor Configuration in Sublime Text

{
	"ensure_newline_at_eof_on_save": true,
	"trim_trailing_white_space_on_save": true,
	"default_line_ending": "unix",
	"default_encoding": "UTF-8"
}

Recommend Using Sublime Text Plugin: https://github.com/sindresorhus/editorconfig-sublime#readme ref: http://editorconfig.org/

# editorconfig.org
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
Clone this wiki locally