Skip to content

Instantly share code, notes, and snippets.

{
"variables": [
{
"name": "selectedOrderItems",
"required": true,
"title": null,
"isMainKey": false,
"defaultValue": null
},
{
[
{
"id":1,
"title":"buttermilk pancakes",
"category":"breakfast",
"price":15.99,
"img":"./images/item-1.jpeg",
"desc":"`I'm baby woke mlkshk wolf bitters live-edge blue bottle, hammock freegan copper mug whatever cold-pressed `"
},
{
@maratgaip
maratgaip / seytech-review-checklist.md
Last active March 13, 2021 00:59
Seytech Review Checklist

Review checklist

General

  1. Does the code work?
  2. Does it have it's own bracn?
  3. Code is easily understand.
  4. Code is written following the coding standarts/guidelines (HTML, CSS, JS, React).
  5. Is the same code duplicated more than twice?
  6. Are functions/classes/components reasonably small (not too big)?
@maratgaip
maratgaip / pre-commit
Created November 13, 2017 19:11
Git pre-commit hook that runs `eslint` with the `--fix` option to fix up issues where possible, and adds "fix"ed files into the commit
#!/bin/bash
cd "$(git rev-parse --show-toplevel)"
ESLINT="node_modules/.bin/eslint"
pwd
if [[ ! -x "$ESLINT" ]]; then
printf "\t\033[41mPlease install ESlint\033[0m (npm install eslint)\n"
exit 1
fi
@maratgaip
maratgaip / MusicApiTasks.md
Last active May 2, 2017 23:39
MusicApi Task
  • User CRUD
  • Artist CRUD
  • Songs CRUD