Merge pull request #11879 from Snuffleupagus/eslint-grouped-accessor-pairs

Enable the ESLint `grouped-accessor-pairs` rule
This commit is contained in:
Tim van der Meij 2020-05-07 23:53:26 +02:00 committed by GitHub
commit 9c341cfec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 8 deletions

View File

@ -77,6 +77,7 @@
"curly": ["error", "all"],
"dot-notation": "error",
"eqeqeq": ["error", "always"],
"grouped-accessor-pairs": ["error", "getBeforeSet"],
"no-caller": "error",
"no-else-return": "error",
"no-empty-pattern": "error",

View File

@ -312,14 +312,14 @@ var PDFViewerApplication = {
return this.pdfDocument.numPages;
},
set page(val) {
this.pdfViewer.currentPageNumber = val;
},
get page() {
return this.pdfViewer.currentPageNumber;
},
set page(val) {
this.pdfViewer.currentPageNumber = val;
},
zoomIn: function pdfViewZoomIn(ticks) {
var newScale = this.pdfViewer.currentScale;
do {

View File

@ -531,14 +531,14 @@ const PDFViewerApplication = {
return this.pdfDocument ? this.pdfDocument.numPages : 0;
},
set page(val) {
this.pdfViewer.currentPageNumber = val;
},
get page() {
return this.pdfViewer.currentPageNumber;
},
set page(val) {
this.pdfViewer.currentPageNumber = val;
},
get printing() {
return !!this.printService;
},