summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2017-08-09 21:10:00 +0000
committerJacob Schatz <jschatz@gitlab.com>2017-08-09 21:10:00 +0000
commitea29e7eb03ced009e0254aadb513e0bb0e225a73 (patch)
tree224d23e6940936abd9192a716ac9462243011aa8
parentd89dc533301e1c6f1e1a73ae357757db626a7b3a (diff)
downloadgitlab-ce-ea29e7eb03ced009e0254aadb513e0bb0e225a73.tar.gz
Update style_guide_js.md
-rw-r--r--doc/development/fe_guide/style_guide_js.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/fe_guide/style_guide_js.md b/doc/development/fe_guide/style_guide_js.md
index 8bd6fec1397..4f6845119a3 100644
--- a/doc/development/fe_guide/style_guide_js.md
+++ b/doc/development/fe_guide/style_guide_js.md
@@ -517,7 +517,7 @@ The goal of this accord is to make sure we are all on the same page.
1. When writing Vue, you may not use jQuery in your application. You may query the DOM 1 time while bootstrapping your application to grab data attributes using `dataset`. Using jQuery with Vue can be useful, however it is impossible to come up with a specific rule of proper usage within Vue.
1. You may have a temporary but immediate need to create technical debt by writing code that does not follow our standards, to be refactored later. You may do this as long as:
- 1. The technical debt is handled in the next release by you.
+ 1. The technical debt is handled in the next release by you with a higher priority than your next month deliverables.
1. You write the tests for that code before hand and those tests will not need to be rewritten. e.g. jQuery tests rewritten to Vue tests.