diff options
author | Douwe Maan <douwe@gitlab.com> | 2016-07-26 00:32:00 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2016-07-26 00:32:00 +0000 |
commit | 68162ba900f1b9003fa3d07613333f201be8154a (patch) | |
tree | 2e83eb4f4286db524ce042c81c3d8535653b1d3a | |
parent | 8ec00fbdd21d512b9fa4f764f8c92728e4885739 (diff) | |
parent | c36d1b162c2a02ae61a4b7b62b6e96df6cb7e9e0 (diff) | |
download | gitlab-ce-68162ba900f1b9003fa3d07613333f201be8154a.tar.gz |
Merge branch 'es6-gitlab-sytanx-highlighting' into 'master'
Added '*.js.es6 gitlab-language=javascript' to .gitattributes
## What does this MR do?
According to the branch name this adds the `sytanx` highlighting for `.js.es6` files, but this actually adds the `syntax` highlighting. :laughing:
## Are there points in the code the reviewer needs to double check?
Is this the right place? :runner:
## Why was this MR needed?
We need pretty ES6 diffs.
## What are the relevant issue numbers?
Flyin' solo :airplane_departure:
## Screenshots (if relevant)
## Does this MR meet the acceptance criteria?
- [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
- [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)
- [ ] API support added
- Tests
- [ ] Added for this feature/bug
- [ ] All builds are passing
- [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
- [ ] Branch has no merge conflicts with `master` (if you do - rebase it please)
- [ ] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
See merge request !5486
-rw-r--r-- | .gitattributes | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitattributes b/.gitattributes index 7e800609e6c..17cbaa5eef5 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ -CHANGELOG merge=union
\ No newline at end of file +CHANGELOG merge=union +*.js.es6 gitlab-language=javascript |