Remove lint

This commit is contained in:
Tim Schaub
2018-07-18 10:35:54 -06:00
parent 71555002a8
commit b8c9125602
20 changed files with 24 additions and 24 deletions

View File

@@ -313,7 +313,7 @@ exports.publish = function(taffyData, opts, tutorials) {
if (example.match(/^\s*<caption>([\s\S]+?)<\/caption>(\s*[\n\r])([\s\S]+)$/i)) { if (example.match(/^\s*<caption>([\s\S]+?)<\/caption>(\s*[\n\r])([\s\S]+)$/i)) {
caption = RegExp.$1; caption = RegExp.$1;
code = RegExp.$3; code = RegExp.$3;
} }
return { return {

View File

@@ -136,7 +136,7 @@ const map = new Map({
layers: [raster, vector], layers: [raster, vector],
interactions: defaultInteractions().extend([new Select({ interactions: defaultInteractions().extend([new Select({
condition: function(evt) { condition: function(evt) {
return evt.type == 'pointermove' || return evt.type == 'pointermove' ||
evt.type == 'singleclick'; evt.type == 'singleclick';
}, },
style: selectStyleFunction style: selectStyleFunction

View File

@@ -27,7 +27,7 @@ const map = new Map({
}) })
}); });
let select = null; // ref to currently selected interaction let select = null; // ref to currently selected interaction
// select interaction working on "singleclick" // select interaction working on "singleclick"
const selectSingleClick = new Select(); const selectSingleClick = new Select();

View File

@@ -8,7 +8,7 @@ const imgHeight = 6100;
const zoomifyUrl = 'http://vips.vtech.fr/cgi-bin/iipsrv.fcgi?zoomify=' + const zoomifyUrl = 'http://vips.vtech.fr/cgi-bin/iipsrv.fcgi?zoomify=' +
'/mnt/MD1/AD00/plan_CHU-4HD-01/FOND.TIF/'; '/mnt/MD1/AD00/plan_CHU-4HD-01/FOND.TIF/';
const iipUrl = 'http://vips.vtech.fr/cgi-bin/iipsrv.fcgi?FIF=' + '/mnt/MD1/AD00/plan_CHU-4HD-01/FOND.TIF' + '&JTL={z},{tileIndex}'; const iipUrl = 'http://vips.vtech.fr/cgi-bin/iipsrv.fcgi?FIF=' + '/mnt/MD1/AD00/plan_CHU-4HD-01/FOND.TIF' + '&JTL={z},{tileIndex}';
const layer = new TileLayer({ const layer = new TileLayer({
source: new Zoomify({ source: new Zoomify({

View File

@@ -26,7 +26,7 @@ export function binarySearch(haystack, needle, opt_comparator) {
cmp = +comparator(haystack[mid], needle); cmp = +comparator(haystack[mid], needle);
if (cmp < 0.0) { /* Too low. */ if (cmp < 0.0) { /* Too low. */
low = mid + 1; low = mid + 1;
} else { /* Key found or too high */ } else { /* Key found or too high */
high = mid; high = mid;

View File

@@ -25,7 +25,7 @@ export function clamp(value, min, max) {
* @param {number} x X. * @param {number} x X.
* @return {number} Hyperbolic cosine of x. * @return {number} Hyperbolic cosine of x.
*/ */
export const cosh = (function() { export const cosh = (function() {
// Wrapped in a iife, to save the overhead of checking for the native // Wrapped in a iife, to save the overhead of checking for the native
// implementation on every invocation. // implementation on every invocation.
let cosh; let cosh;

View File

@@ -660,7 +660,7 @@ class CanvasReplay extends VectorContext {
case CanvasInstruction.DRAW_IMAGE: case CanvasInstruction.DRAW_IMAGE:
d = /** @type {number} */ (instruction[1]); d = /** @type {number} */ (instruction[1]);
dd = /** @type {number} */ (instruction[2]); dd = /** @type {number} */ (instruction[2]);
image = /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */ image = /** @type {HTMLCanvasElement|HTMLVideoElement|HTMLImageElement} */
(instruction[3]); (instruction[3]);
// Remaining arguments in DRAW_IMAGE are in alphabetical order // Remaining arguments in DRAW_IMAGE are in alphabetical order
anchorX = /** @type {number} */ (instruction[4]); anchorX = /** @type {number} */ (instruction[4]);
@@ -711,7 +711,7 @@ class CanvasReplay extends VectorContext {
const measure = /** @type {function(string):number} */ (instruction[8]); const measure = /** @type {function(string):number} */ (instruction[8]);
const offsetY = /** @type {number} */ (instruction[9]); const offsetY = /** @type {number} */ (instruction[9]);
const strokeKey = /** @type {string} */ (instruction[10]); const strokeKey = /** @type {string} */ (instruction[10]);
const strokeWidth = /** @type {number} */ (instruction[11]); const strokeWidth = /** @type {number} */ (instruction[11]);
const text = /** @type {string} */ (instruction[12]); const text = /** @type {string} */ (instruction[12]);
const textKey = /** @type {string} */ (instruction[13]); const textKey = /** @type {string} */ (instruction[13]);
const textScale = /** @type {number} */ (instruction[14]); const textScale = /** @type {number} */ (instruction[14]);

View File

@@ -266,7 +266,7 @@ class CanvasTextReplay extends CanvasReplay {
const textState = this.textStates[textKey] || this.textState_; const textState = this.textStates[textKey] || this.textState_;
const pixelRatio = this.pixelRatio; const pixelRatio = this.pixelRatio;
const scale = textState.scale * pixelRatio; const scale = textState.scale * pixelRatio;
const align = TEXT_ALIGN[textState.textAlign || defaultTextAlign]; const align = TEXT_ALIGN[textState.textAlign || defaultTextAlign];
const strokeWidth = strokeKey && strokeState.lineWidth ? strokeState.lineWidth : 0; const strokeWidth = strokeKey && strokeState.lineWidth ? strokeState.lineWidth : 0;
const lines = text.split('\n'); const lines = text.split('\n');

View File

@@ -136,7 +136,7 @@ class WebGLCircleReplay extends WebGLReplay {
this.styles_.pop(); this.styles_.pop();
if (this.styles_.length) { if (this.styles_.length) {
const lastState = this.styles_[this.styles_.length - 1]; const lastState = this.styles_[this.styles_.length - 1];
this.state_.fillColor = /** @type {Array.<number>} */ (lastState[0]); this.state_.fillColor = /** @type {Array.<number>} */ (lastState[0]);
this.state_.strokeColor = /** @type {Array.<number>} */ (lastState[1]); this.state_.strokeColor = /** @type {Array.<number>} */ (lastState[1]);
this.state_.lineWidth = /** @type {number} */ (lastState[2]); this.state_.lineWidth = /** @type {number} */ (lastState[2]);
this.state_.changed = false; this.state_.changed = false;

View File

@@ -10,7 +10,7 @@ import EventType from '../events/EventType.js';
import {FALSE, UNDEFINED} from '../functions.js'; import {FALSE, UNDEFINED} from '../functions.js';
import SourceState from '../source/State.js'; import SourceState from '../source/State.js';
class LayerRenderer extends Observable { class LayerRenderer extends Observable {
/** /**
* @param {module:ol/layer/Layer} layer Layer. * @param {module:ol/layer/Layer} layer Layer.

View File

@@ -132,7 +132,7 @@ class IntermediateCanvasRenderer extends CanvasLayerRenderer {
const imageData = this.hitCanvasContext_.getImageData(0, 0, 1, 1).data; const imageData = this.hitCanvasContext_.getImageData(0, 0, 1, 1).data;
if (imageData[3] > 0) { if (imageData[3] > 0) {
return callback.call(thisArg, this.getLayer(), imageData); return callback.call(thisArg, this.getLayer(), imageData);
} else { } else {
return undefined; return undefined;
} }

View File

@@ -112,7 +112,7 @@ class CanvasVectorLayerRenderer extends CanvasLayerRenderer {
const clipExtent = layerState.extent; const clipExtent = layerState.extent;
const clipped = clipExtent !== undefined; const clipped = clipExtent !== undefined;
if (clipped) { if (clipped) {
this.clip(context, frameState, /** @type {module:ol/extent~Extent} */ (clipExtent)); this.clip(context, frameState, /** @type {module:ol/extent~Extent} */ (clipExtent));
} }
const replayGroup = this.replayGroup_; const replayGroup = this.replayGroup_;
if (replayGroup && !replayGroup.isEmpty()) { if (replayGroup && !replayGroup.isEmpty()) {

View File

@@ -266,7 +266,7 @@ class WebGLImageLayerRenderer extends WebGLLayerRenderer {
const imageData = this.hitCanvasContext_.getImageData(0, 0, 1, 1).data; const imageData = this.hitCanvasContext_.getImageData(0, 0, 1, 1).data;
if (imageData[3] > 0) { if (imageData[3] > 0) {
return callback.call(thisArg, this.getLayer(), imageData); return callback.call(thisArg, this.getLayer(), imageData);
} else { } else {
return undefined; return undefined;
} }

View File

@@ -7,6 +7,6 @@
* @enum {string} * @enum {string}
*/ */
export default { export default {
KVP: 'KVP', // see spec §8 KVP: 'KVP', // see spec §8
REST: 'REST' // see spec §10 REST: 'REST' // see spec §10
}; };

View File

@@ -246,7 +246,7 @@ class LRUCache extends EventTarget {
* @param {T} value Value. * @param {T} value Value.
*/ */
replace(key, value) { replace(key, value) {
this.get(key); // update `newest_` this.get(key); // update `newest_`
this.entries_[key].value_ = value; this.entries_[key].value_ = value;
} }

View File

@@ -185,7 +185,7 @@ class RegularShape extends ImageStyle {
radius2: this.getRadius2(), radius2: this.getRadius2(),
angle: this.getAngle(), angle: this.getAngle(),
snapToPixel: this.getSnapToPixel(), snapToPixel: this.getSnapToPixel(),
stroke: this.getStroke() ? this.getStroke().clone() : undefined, stroke: this.getStroke() ? this.getStroke().clone() : undefined,
rotation: this.getRotation(), rotation: this.getRotation(),
rotateWithView: this.getRotateWithView(), rotateWithView: this.getRotateWithView(),
atlasManager: this.atlasManager_ atlasManager: this.atlasManager_

View File

@@ -82,7 +82,7 @@ describe('ol.interaction.Snap', function() {
snapInteraction.setMap(map); snapInteraction.setMap(map);
const event = { const event = {
pixel: [7 + width / 2, height / 2 - 4], pixel: [7 + width / 2, height / 2 - 4],
coordinate: [7, 4], coordinate: [7, 4],
map: map map: map
}; };
@@ -100,7 +100,7 @@ describe('ol.interaction.Snap', function() {
snapInteraction.setMap(map); snapInteraction.setMap(map);
const event = { const event = {
pixel: [7 + width / 2, height / 2 - 4], pixel: [7 + width / 2, height / 2 - 4],
coordinate: [7, 4], coordinate: [7, 4],
map: map map: map
}; };
@@ -117,7 +117,7 @@ describe('ol.interaction.Snap', function() {
snapInteraction.setMap(map); snapInteraction.setMap(map);
const event = { const event = {
pixel: [5 + width / 2, height / 2 - 5], pixel: [5 + width / 2, height / 2 - 5],
coordinate: [5, 5], coordinate: [5, 5],
map: map map: map
}; };

View File

@@ -251,7 +251,7 @@ describe('ol.Map', function() {
}); });
describe('#forEachLayerAtPixel()', function() { describe('#forEachLayerAtPixel()', function() {
let target, map, original, log; let target, map, original, log;

View File

@@ -50,7 +50,7 @@ describe('ol.render.Box', function() {
}); });
describe('#setPixels()', function() { describe('#setPixels()', function() {
it('applies correct styles for a box', function() { it('applies correct styles for a box', function() {
box.setPixels([1, 2], [4, 8]); box.setPixels([1, 2], [4, 8]);
expect(box.element_.style.left).to.be('1px'); expect(box.element_.style.left).to.be('1px');
expect(box.element_.style.top).to.be('2px'); expect(box.element_.style.top).to.be('2px');

View File

@@ -5,7 +5,7 @@ import TileState from '../../../src/ol/TileState.js';
describe('ol.Tile', function() { describe('ol.Tile', function() {
describe('constructor', function() { describe('constructor', function() {
it('sets a default transition', function() { it('sets a default transition', function() {
const coord = [0, 0, 0]; const coord = [0, 0, 0];
const tile = new Tile(coord, TileState.IDLE); const tile = new Tile(coord, TileState.IDLE);
@@ -72,7 +72,7 @@ describe('ol.Tile', function() {
tail = addToChain(tail, TileState.IDLE); //discard, deprecated by head tail = addToChain(tail, TileState.IDLE); //discard, deprecated by head
tail = addToChain(tail, TileState.LOADED); //keep, use for rendering tail = addToChain(tail, TileState.LOADED); //keep, use for rendering
renderTile = tail; //store this tile for later tests renderTile = tail; //store this tile for later tests
tail = addToChain(tail, TileState.IDLE); //rest of list outdated by tile above tail = addToChain(tail, TileState.IDLE); //rest of list outdated by tile above
tail = addToChain(tail, TileState.LOADED); tail = addToChain(tail, TileState.LOADED);
tail = addToChain(tail, TileState.LOADING); tail = addToChain(tail, TileState.LOADING);
tail = addToChain(tail, TileState.LOADED); tail = addToChain(tail, TileState.LOADED);