summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-12-14 21:20:15 +0000
committerAlfredo Sumaran <alfredo@gitlab.com>2016-12-14 21:20:15 +0000
commit973391f9f21ec1014349138a1012c022f966238e (patch)
tree2614518d1c6ced177057863ed1f95a703ac4a073
parent2f736c6d41acb53f70755442972f43921c2ac6f2 (diff)
parent53fb5a7f24149740e5c579a9496164c29b9d919b (diff)
downloadgitlab-ce-973391f9f21ec1014349138a1012c022f966238e.tar.gz
Merge branch 'dont-lint-npm-modules' into 'master'
add node_modules to our eslintignore settings ## What does this MR do? Adds `/node_modules` directory to `.eslintignore` so we don't lint npm modules in our build process. ## Are there points in the code the reviewer needs to double check? ## Why was this MR needed? ## Screenshots (if relevant) ## Does this MR meet the acceptance criteria? - [ ] [Changelog entry](https://docs.gitlab.com/ce/development/changelog.html) 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 - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] Branch has no merge conflicts with `master` (if it does - rebase it please) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) ## What are the relevant issue numbers? Closes #25690 See merge request !8089
-rw-r--r--.eslintignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.eslintignore b/.eslintignore
index 93de4b10dfe..b4bfa5a1f7a 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -1,5 +1,6 @@
/coverage/
/coverage-javascript/
+/node_modules/
/public/
/tmp/
/vendor/