</li>
or <body>
).Enforce standards mode and more consistent rendering in every browser possible with this simple doctype at the beginning of every HTML page.
From the HTML5 spec:
Authors are encouraged to specify a lang attribute on the root html element, giving the document’s language. This aids speech synthesis tools to determine what pronunciations to use, translation tools to determine what rules to use, and so forth.
Read more about the lang
attribute in the spec.
Head to Sitepoint for a list of language codes.
Internet Explorer supports the use of a document compatibility <meta>
tag to specify what version of IE the page should be rendered as. Unless circumstances require otherwise, it’s most useful to instruct IE to use the latest supported mode with edge mode.
For more information, read this awesome Stack Overflow article.
Quickly and easily ensure proper rendering of your content by declaring an explicit character encoding. When doing so, you may avoid using character entities in your HTML, provided their encoding matches that of the document (generally UTF-8).
Per HTML5 spec, typically there is no need to specify a type
when including CSS and JavaScript files as text/css
and text/javascript
are their respective defaults.
Strive to maintain HTML standards and semantics, but not at the expense of practicality. Use the least amount of markup with the fewest intricacies whenever possible.
HTML attributes should come in this particular order for easier reading of code.
class
id
, name
data-*
src
, for
, type
, href
, value
title
, alt
role
, aria-*
Classes make for great reusable components, so they come first. Ids are more specific and should be used sparingly (e.g., for in-page bookmarks), so they come second.
A boolean attribute is one that needs no declared value. XHTML required you to declare a value, but HTML5 has no such requirement.
For further reading, consult the WhatWG section on boolean attributes:
The presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.
If you must include the attribute’s value, and you don’t need to, follow this WhatWG guideline:
If the attribute is present, its value must either be the empty string or […] the attribute’s canonical name, with no leading or trailing whitespace.
In short, don’t add a value.
Whenever possible, avoid superfluous parent elements when writing HTML. Many times this requires iteration and refactoring, but produces less HTML. Take the following example:
Writing markup in a JavaScript file makes the content harder to find, harder to edit, and less performant. Avoid it whenever possible.
:
for each declaration.box-shadow
).rgb()
, rgba()
, hsl()
, hsla()
, or rect()
values. This helps differentiate multiple color values (comma, no space) from multiple property values (comma with space).0.5
instead of .5
and -0.5px
instead of -.5px
).#fff
. Lowercase letters are much easier to discern when scanning a document as they tend to have more unique shapes.#fff
instead of #ffffff
.input[type="text"]
. They’re only optional in some cases, and it’s a good practice for consistency.margin: 0;
instead of margin: 0px;
.Questions on the terms used here? See the syntax section of the Cascading Style Sheets article on Wikipedia.
[class^="..."]
) on commonly occuring components. Browser performance is known to be impacted by these.Additional reading:
Nesting is very helpful to define element states such as active and hover, pseudo elements like before and after, and minimal child selectors that don’t justify an additional class name.
Variables in Sass are a powerful way to define values in one place that can be reused in multiple places in your project. They allow you to make changes from a central point without needing to use find and replace across multiple files and directories. [ref]
_user-settings.scss
.First, some basics:
This should be your first plan of attack. Using an @extend limits customizability but produces a more efficient CSS file. Smaller is better.
If you need to overwrite declarations of an @extend or need to pass values to it then you’ll want to set up a mixin and use @include instead. Mixins are powerful and are generally used to accomplish complicated or labor-intensive tasks. Some examples:
Code is written and maintained by people. Ensure your code is descriptive, well commented, and approachable by others. Great code comments convey context or purpose. Do not simply reiterate a component or class name.
Be sure to write in complete sentences for larger comments and succinct phrases for general notes.
Place media queries inside their respective selector. Don’t have entire blocks of code dedicated to a single media query.
Feel free to create a media query mixin to simplify modifying your queries.
Even in cases where you only have one rule per selector, avoid single-line formatting. In the same way that consistent trailing commas in Javascript makes for cleaner diffs, so does maintaining consistent formatting across all CSS rules, regardless of the number.
Strive to limit use of shorthand declarations to instances where you must explicitly set all the available values. Common overused shorthand properties include:
padding
margin
font
background
border
border-radius
Often times we don’t need to set all the values a shorthand property represents. For example, HTML headings only set top and bottom margin, so when necessary, only override those two values. Excessive use of shorthand properties often leads to sloppier code with unnecessary overrides and unintended side effects.
The Mozilla Developer Network has a great article on shorthand properties for those unfamiliar with notation and behavior.
.btn
and .btn-danger
)..btn
is useful for button, but .s
doesn’t mean anything..js-*
classes to denote behavior (as opposed to style), but keep these classes out of your CSS.Thanks to compilation and compression, we’re able to organize styles into many small files without impacting the end user. Rules should be organized into small sets corresponding to the elements they style. Styles of unrelated elements should never be in the same file.
Consider the example on the right.
This rule obviously hides something, but it’s not clear what it’s hiding, or why. This code is unmaintainable, because its purpose is not obvious. Strive to write selectors and styles whose purpose and relationship is intuitive and obvious.
Recommended only. During the course of development this might not be realistic. Try to keep the following recommendations in mind.
Related property declarations should be grouped together following the order:
Positioning comes first because it can remove an element from the normal flow of the document and override box model related styles. The box model comes next as it dictates a component’s dimensions and placement.
Everything else takes place inside the component or without impacting the previous two sections, and thus they come last.
For a complete list of properties and their order, please see Recess.
@import
Compared to <link>
s, @import
is slower, adds extra page requests, and can cause other unforeseen problems. Avoid them and instead opt for an alternate approach:
<link>
elementsFor more information, read this article by Steve Souders.
For improved readability, wrap all math operations in parentheses with a single space between values, variables, and operators.
Set your editor to the following settings to avoid common code inconsistencies and dirty diffs:
Consider documenting and applying these preferences to your project’s .editorconfig
file. For an example, see the one in Bootstrap. Learn more about EditorConfig.
\n
not \r\n
.const
for all of your references; avoid using var
.let
instead of var
.let
is block-scoped rather than function-scoped like var
.let
and const
are block-scoped.const
/let
declaration per variable.const
s and then group all your let
s.Use ===
and !==
over ==
and !=
.
Conditional statements such as the if statement evaulate their expression using coercion with the ToBoolean
abstract method and always follow these simple rules:
true
false
false
+0
, -0
, or NaN
, otherwise true
''
, otherwise true
String
for Strings.parseInt
for Numbers and always with a radix for type casting.Boolean
for Booleans._
when naming private properties or methods.this
. Use arrow functions or Function#bind
./** ... */
for multi-line comments. Include a description, specify types and values for all parameters and return values.//
for single line comments. Place single line comments on a newline above the subject of the comment. Put an empty line before the comment.Prefixing your comments with FIXME
or TODO
helps other developers quickly understand if you’re pointing out a problem that needs to be revisited, or if you’re suggesting a solution to the problem that needs to be implemented. These are different than regular comments because they are actionable.
// FIXME:
to annotate problems.// TODO:
to annotate solutions to problems.Import statements should be grouped in the following order:
''
for strings.Array#push
instead of direct assignment to add items to an array....
to copy arrays.Array#from
.this
, which is usually what you want, and is a more concise syntax.arguments
. This will take precedence over the arguments
object that is given to every function scope.arguments
, opt to use rest syntax ...
instead.Object#assign
to set default object values.class
. Avoid manipulating prototype
directly.extends
for inheritance. It is a built-in way to inherit prototype functionality without breaking instanceof
.toString()
method, just make sure it works successfully and causes no side effects.getVal()
and setVal('hello')
.isVal()
or hasVal()
.get()
and set()
functions, but be consistent.When attaching data payloads to events (whether DOM events or something more proprietary like Backbone events), pass a hash instead of a raw value. This allows a subsequent contributor to add more data to the event payload without finding and updating every handler for the event.
$
.Gearbox follows PSR-2 standards for PHP development. This is an overview of the higher-level rules for PSR-2, for the full set of standards please reference the PHP-FIG docs.
The PSR-2 Standard extends the PSR-1 Standard, documented here.
use
declarations.abstract
and final
should be declared before the visibility; static
should be declared after the visibility.snake_case
.PascalCase
.camelCase
.namespace
declaration.use
declarations should go after the namespace
declaration.use
keyword per declaration.use
block.When making a method or function call:
Argument lists can be split across multiple lines, where each subsequent line is indented once. When doing so, the first item in the list should be on its own line, with only one argument per line.
The general style rules for control structures are as follows:
The body of each structure should be enclosed by braces. This standardizes how the structures look, and reduces the likelihood of introducing errors as new lines get added to the body.
function
keyword, and a space before and after the use
keyword.Like methods and functions, argument lists can be spread across multiple lines, using the same line-break and indentation style.
Use single and double quotes when appropriate. If you’re not evaluating anything in the string, use single quotes. You should almost never have to escape quotes in a string, because you can just alternate your quoting style.
Text that goes into attributes in Wordpress should be run through esc_attr()
so that single or double quotes do not end the attribute value and invalidate the HTML and cause a security issue. See Data Validation in the Codex for further details.
Perl compatible regular expressions (PCRE, preg_
functions) should be used in preference to their POSIX counterparts. Never use the /e
switch, use preg_replace_callback
instead.
It’s most convenient to use single-quoted strings for regular expressions since, contrary to double-quoted strings, they have only two metasequences: \'
and \\
.
A ternary operator must always have a space before and after the : and ? characters, unless the desired output matches the logic used to define the output.
Ternary operators should be wrapped in braces for maximum readability.
Prefer string values to just true
and false
when calling functions.
Since PHP doesn’t support named arguments, the values of the flags are meaningless, and each time we come across a function call like the examples above, we have to search for the function definition. The code can be made more readable by using descriptive string values, instead of booleans.
/resources/views/layouts
directory and reference it using the Blade @extends
directive.@php
directive available it is preferred to do one of the following:
There are many useful directives provided in the base theme (or there will be once it exists).
For projects with unique functionality it is recommended to create your own blade directives in /app/lib/directives.php
.
We need to add controller stuff here once it’s standardized.
This is where naming conventions will go once they’re figured out.
Shopify is the only platform that we develop for that uses Liquid. Fortunately, they’ve done a great job on documentation and almost all of the info that you need can be found there.
The Objects link above is almost certainly the most important resource available to you when writing code for Shopify. It contains every single object you might come across during development and all of the values attached to them.
In Liquid, you can include a hyphen in your tag syntax {{-
, -}}
, {%-
, and -%}
to strip whitespace from the left or right side of a rendered tag.
=
==
, !=
, <
, >
, etc.if
, unless
, and
, or
|
, minus:
, divided_by:
, strip
{{ }}
, {% %}
json
filterAt its most basic, source control gives us the ability to store, share, and transport code and code changes, but the real value comes from the ability to record and replay the stories behind each change during the lifetime of a project.
This is not an intro to source control or a git how-to: we assume that you have an intermediate understanding of how to use git. If you’re new to git, chapters 2, 3, and 6 (through the section on interactive rebasing) of Scott Chacon’s git book will tell you the how.
It doesn’t matter if you use git’s commands or a GUI (see GitHub for Mac and GitKraken), but you need a confident understanding of what’s happening regardless. Knowing the commands often helps.
To keep our many repositories easy to find we follow a simple naming convention:
Things to do right away:
Never commit directly to master. Instead, create small branches for each and every topic you work on (such as a feature or bug fix), and create a pull request into master when the branch is complete.
The exception to this rule is version commits and tags.
If your branch cannot be named as a specific function/feature/bug then you can create a long-running branch with a name like multiple_fixes
.
When using this method, it’s important that the commits are clear and minimal (see Commits).
Please read Stephen Ball’s Steel City Ruby 2013 presentation, Deliberate Git. It covers this topic very well.
Once you’ve read it, you’ll understand why you should:
WIP
is fine.When writing commits:
If you’re pushing a new branch, use the --set-upstream
(-u
) flag to automatically set the remote branch as your local branch’s tracking branch.
So your pull request has been peer-reviewed and approved – nice work! Now it’s time to merge your changes into master.
You want to use a fast-forward merge (git merge --ff-only
). Merging this way prevents “merge bubbles” where commit messages are created that say that a branch has been merged. This is called a recursive merge and it muddies up the commit history.
Versioned libraries, both internal and public, should follow these practices:
major_feature.minor_feature/major_bugfix.minor_bugfix
numbering schemev