Skip to content

Commit

Permalink
Disable spellcheck lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rochmar Nicolas (DevExpress) committed Jul 30, 2024
1 parent 1732ced commit 2010d84
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { getEventTarget } from '@js/events/utils/event_target';

const window = getWindow();

/* eslint-disable spellcheck/spell-checker */
const EMPTY_EVENT_NAME = 'dxEmptyEventType';
const NATIVE_EVENTS_TO_SUBSCRIBE = {
mouseenter: 'mouseover',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { extend } from '@js/core/utils/extend';
import BaseStrategy from '@js/events/pointer/base';
import Observer from '@js/events/pointer/observer';

/* eslint-disable spellcheck/spell-checker */
const eventMap = {
dxpointerdown: 'mousedown',
dxpointermove: 'mousemove',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import MouseStrategy from '@js/events/pointer/mouse';
import TouchStrategy from '@js/events/pointer/touch';
import { isMouseEvent } from '@js/events/utils/index';

/* eslint-disable spellcheck/spell-checker */
const eventMap = {
dxpointerdown: 'touchstart mousedown',
dxpointermove: 'touchmove mousemove',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const Observer = function (eventMap, pointerEquals, onPointerAdding) {
pointers[getPointerIndex(e)] = e;
};

/* eslint-disable spellcheck/spell-checker */
addEventsListener(eventMap.dxpointerdown, addPointer);
addEventsListener(eventMap.dxpointermove, updatePointer);
addEventsListener(eventMap.dxpointerup, removePointer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { extend } from '@js/core/utils/extend';
import { each } from '@js/core/utils/iterator';
import BaseStrategy from '@js/events/pointer/base';

/* eslint-disable spellcheck/spell-checker */
const eventMap = {
dxpointerdown: 'touchstart',
dxpointermove: 'touchmove',
Expand Down

0 comments on commit 2010d84

Please sign in to comment.