-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(@sit-onyx/eslint-plugin): add "no-shadow-native-events" from "es…
…lint-plugin-vue" until its released (#1877) Duplicate "no-shadow-native-events" from "eslint-plugin-vue" until it is released: - PR with `eslint-plugin-vue`: vuejs/eslint-plugin-vue#2558 - Tests can also be found in that PR - Official Rule proposal: vuejs/eslint-plugin-vue#2557 Relates to #1603
- Loading branch information
Showing
12 changed files
with
429 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@sit-onyx/eslint-plugin": minor | ||
--- | ||
|
||
feat(no-shadow-native-events): duplicated implementation here until it is [released offically](https://github.com/vuejs/eslint-plugin-vue/issues/2557) |
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 |
---|---|---|
@@ -0,0 +1,85 @@ | ||
[ | ||
"copy", | ||
"cut", | ||
"paste", | ||
"compositionend", | ||
"compositionstart", | ||
"compositionupdate", | ||
"drag", | ||
"dragend", | ||
"dragenter", | ||
"dragexit", | ||
"dragleave", | ||
"dragover", | ||
"dragstart", | ||
"drop", | ||
"focus", | ||
"focusin", | ||
"focusout", | ||
"blur", | ||
"change", | ||
"beforeinput", | ||
"input", | ||
"reset", | ||
"submit", | ||
"invalid", | ||
"load", | ||
"error", | ||
"keydown", | ||
"keypress", | ||
"keyup", | ||
"auxclick", | ||
"click", | ||
"contextmenu", | ||
"dblclick", | ||
"mousedown", | ||
"mouseenter", | ||
"mouseleave", | ||
"mousemove", | ||
"mouseout", | ||
"mouseover", | ||
"mouseup", | ||
"abort", | ||
"canplay", | ||
"canplaythrough", | ||
"durationchange", | ||
"emptied", | ||
"encrypted", | ||
"ended", | ||
"loadeddata", | ||
"loadedmetadata", | ||
"loadstart", | ||
"pause", | ||
"play", | ||
"playing", | ||
"progress", | ||
"ratechange", | ||
"seeked", | ||
"seeking", | ||
"stalled", | ||
"suspend", | ||
"timeupdate", | ||
"volumechange", | ||
"waiting", | ||
"select", | ||
"scroll", | ||
"scrollend", | ||
"touchcancel", | ||
"touchend", | ||
"touchmove", | ||
"touchstart", | ||
"pointerdown", | ||
"pointermove", | ||
"pointerup", | ||
"pointercancel", | ||
"pointerenter", | ||
"pointerleave", | ||
"pointerover", | ||
"pointerout", | ||
"wheel", | ||
"animationstart", | ||
"animationend", | ||
"animationiteration", | ||
"transitionend", | ||
"transitionstart" | ||
] |
Oops, something went wrong.