Skip to content

Instantly share code, notes, and snippets.

View kayquer's full-sized avatar

Kayquer kayquer

  • ImobiBrasil Ltda
  • Presidente Prudente / SP
  • 16:51 (UTC -03:00)
View GitHub Profile
@kayquer
kayquer / code-review-checklist.md
Created June 8, 2022 11:46 — forked from nerandell/code-review-checklist.md
PHP Code Review Guidelines

Make sure these boxes are checked before submitting/approving the PR

General

  • The code works
  • The code is easy to understand
  • Follows coding conventions
  • Names are simple and if possible short
  • Names are spelt correctly
  • Names contain units where applicable
  • There are no usages of magic numbers
<div id="swipezone">
Swipe me
</div>
// credit: http://www.javascriptkit.com/javatutors/touchevents2.shtml
function swipedetect(el, callback){
var touchsurface = el,
swipedir,
startX,