Skip to content

Instantly share code, notes, and snippets.

View atmonello's full-sized avatar

André Monello atmonello

View GitHub Profile
@atmonello
atmonello / getOmintDoctors.js
Created July 16, 2024 16:37
Omint - Get doctors
/**
* @typedef {Object} FullMedico
* @property {number} Distancia
* @property {Prestador} Prestador
* @property {boolean} Favorito
*/
/**
* @typedef {Object} Prestador
* @property {string} CodigoRede
@atmonello
atmonello / nuxt-eslint.md
Created January 15, 2021 01:09
Nuxt + ESLint setup

This is how to configure Nuxt with ESLint and Prettier + VSCode to format source on save.

  • Install dependencies in project folder:
$ npm install eslint babel-eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue eslint-loader prettier -D