feat: migrate to @cordova/eslint-config@3.x (#629)

This commit is contained in:
エリス 2020-07-14 19:15:29 +09:00 committed by GitHub
parent 358522c0b5
commit 973bbbbac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 28 deletions

View File

@ -1,10 +1,23 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
root: true root: true
extends: semistandard extends: '@cordova/eslint-config/browser'
rules:
indent: overrides:
- error - files: [tests/**/*.js]
- 4 extends: '@cordova/eslint-config/node-tests'
camelcase: off
padded-blocks: off
operator-linebreak: off
no-throw-literal: off

View File

@ -31,8 +31,8 @@
"cordova-osx" "cordova-osx"
], ],
"scripts": { "scripts": {
"test": "npm run eslint", "test": "npm run lint",
"eslint": "node node_modules/eslint/bin/eslint www && node node_modules/eslint/bin/eslint src && node node_modules/eslint/bin/eslint tests" "lint": "eslint ."
}, },
"author": "Apache Software Foundation", "author": "Apache Software Foundation",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -51,12 +51,6 @@
} }
}, },
"devDependencies": { "devDependencies": {
"eslint": "^4.3.0", "@cordova/eslint-config": "^3.0.0"
"eslint-config-semistandard": "^11.0.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
} }
} }

View File

@ -112,7 +112,7 @@ function capture (success, errorCallback, opts) {
}; };
if (navigator.getUserMedia) { if (navigator.getUserMedia) {
navigator.getUserMedia({video: true, audio: false}, successCallback, errorCallback); navigator.getUserMedia({ video: true, audio: false }, successCallback, errorCallback);
} else { } else {
alert('Browser does not support camera :('); alert('Browser does not support camera :(');
} }

View File

@ -374,7 +374,6 @@ function takePictureFromCameraWP (successCallback, errorCallback, args) {
return capture.initializeAsync(captureSettings); return capture.initializeAsync(captureSettings);
}).then(function () { }).then(function () {
// create focus control if available // create focus control if available
var VideoDeviceController = capture.videoDeviceController; var VideoDeviceController = capture.videoDeviceController;
var FocusControl = VideoDeviceController.focusControl; var FocusControl = VideoDeviceController.focusControl;
@ -477,7 +476,6 @@ function takePictureFromCameraWP (successCallback, errorCallback, args) {
} }
function captureAction () { function captureAction () {
var encodingProperties; var encodingProperties;
var fileName; var fileName;
var tempFolder = getAppData().temporaryFolder; var tempFolder = getAppData().temporaryFolder;
@ -812,7 +810,6 @@ function savePhoto (picture, options, successCallback, errorCallback) {
if (!options.saveToPhotoAlbum) { if (!options.saveToPhotoAlbum) {
success(picture); success(picture);
} else { } else {
var savePicker = new Windows.Storage.Pickers.FileSavePicker(); var savePicker = new Windows.Storage.Pickers.FileSavePicker();
var saveFile = function (file) { var saveFile = function (file) {

View File

@ -378,7 +378,7 @@ exports.defineManualTests = function (contentEl, createActionButton) {
var options = ''; var options = '';
if (typeof values === 'boolean') { if (typeof values === 'boolean') {
values = { 'true': 1, 'false': 0 }; values = { true: 1, false: 0 };
} }
for (var k in values) { for (var k in values) {
var isSelected = ''; var isSelected = '';
@ -409,9 +409,9 @@ exports.defineManualTests = function (contentEl, createActionButton) {
createOptionsEl('destinationType', Camera.DestinationType, camDestinationTypeDefault) + createOptionsEl('destinationType', Camera.DestinationType, camDestinationTypeDefault) +
createOptionsEl('encodingType', Camera.EncodingType, camEncodingTypeDefault) + createOptionsEl('encodingType', Camera.EncodingType, camEncodingTypeDefault) +
createOptionsEl('mediaType', Camera.MediaType, camMediaTypeDefault) + createOptionsEl('mediaType', Camera.MediaType, camMediaTypeDefault) +
createOptionsEl('quality', { '0': 0, '50': 50, '80': 80, '100': 100 }, camQualityDefault) + createOptionsEl('quality', { 0: 0, 50: 50, 80: 80, 100: 100 }, camQualityDefault) +
createOptionsEl('targetWidth', { '50': 50, '200': 200, '800': 800, '2048': 2048 }) + createOptionsEl('targetWidth', { 50: 50, 200: 200, 800: 800, 2048: 2048 }) +
createOptionsEl('targetHeight', { '50': 50, '200': 200, '800': 800, '2048': 2048 }) + createOptionsEl('targetHeight', { 50: 50, 200: 200, 800: 800, 2048: 2048 }) +
createOptionsEl('allowEdit', true, camAllowEditDefault) + createOptionsEl('allowEdit', true, camAllowEditDefault) +
createOptionsEl('correctOrientation', true, camCorrectOrientationDefault) + createOptionsEl('correctOrientation', true, camCorrectOrientationDefault) +
createOptionsEl('saveToPhotoAlbum', true, camSaveToPhotoAlbumDefault) + createOptionsEl('saveToPhotoAlbum', true, camSaveToPhotoAlbumDefault) +

View File

@ -58,7 +58,7 @@ var CameraPopoverHandle = function () {
* @param {module:CameraPopoverOptions} popoverOptions * @param {module:CameraPopoverOptions} popoverOptions
*/ */
this.setPosition = function (popoverOptions) { this.setPosition = function (popoverOptions) {
var args = [ popoverOptions ]; var args = [popoverOptions];
exec(null, null, 'Camera', 'repositionPopover', args); exec(null, null, 'Camera', 'repositionPopover', args);
}; };
}; };