2
0
mirror of https://github.com/tenrok/vue-context.git synced 2026-06-23 11:40:33 +03:00

Accessibility (#22)

This commit is contained in:
Randall Wilk
2019-05-18 19:44:34 -05:00
committed by GitHub
parent ed1344e099
commit 5b6dd62705
22 changed files with 1421 additions and 1390 deletions
-1
View File
@@ -85,6 +85,5 @@ Please follow these coding conventions when contributing to the project.
hash arrows.
- I leave an empty line between code and return statements.
- I ALWAYS put spaces between properties in an object (`{ VueContext }`, not `{VueContext}`).
- I always a function declaration and its parameters (`methodName ()`, not `methodName()`).
- I always use single quotes over double quotes, unless it makes sense to use double quotes. If that's the case, I usually prefer to
use template strings instead of double quotes (`` `${variable} some text that has a single quote ' in it` `` instead of `variable + " some text that has a single quote ' in it"`).