-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite References api in ES9 (#813)
* rewrite references api with es9 and Promises - es9 .eslintrc which extends the default .eslintrc - start rewriting tests/server/reference-create.server.routes.tests.js - fix eslint var/let/const errors in remaining reference server tests * further es7ifying of reference-create.server.routes.tests * organize .eslintrc files, keep moving reference tests to es7+ * tests/server/reference-read-one.server.routes.tests to es7+ * reference.server.jobs.tests to es7+ - small fix in reference-read-many tests * reference.server.model.tests to es7+ * migrate modules/references/server to es7+ * use .eslintrc.js with overrides for es9 configuration * make eslint rules for es2018 more consistent and strict - fix eslint rules and add exceptions to eslint rules
- Loading branch information
mrkvon
authored
Dec 8, 2018
1 parent
da33fd2
commit 515618a
Showing
15 changed files
with
1,110 additions
and
1,530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
'use strict'; | ||
/* eslint no-var: 0 */ | ||
|
||
import ngreact from 'ngreact'; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/* eslint no-var: 0 */ | ||
import photos from '@/modules/core/client/services/photos.service'; | ||
|
||
(function () { | ||
|
Oops, something went wrong.