Skip to content

Instantly share code, notes, and snippets.

View bezael's full-sized avatar
🎯
Focusing

Bezael Pérez bezael

🎯
Focusing
View GitHub Profile

Install Angular ESLint

ng add @angular-eslint/schematics

Install Prettier and Prettier-ESLint dependencies

npm i prettier prettier-eslint eslint-config-prettier eslint-plugin-prettier -D

ESLint configuration

Filename: .eslintrc.json

@bezael
bezael / gist:4c2fefbad406f9004ae1afeef53560d8
Last active February 25, 2023 12:50
Demo api - dominicode
{
"stores": [
{
"id": 1,
"name": "Park Row at Beekman St",
"address": "38 Park Row",
"city": "New York",
"openingHours": "10:00 - 14:00 and 17:00 - 20:30"
},
{
@bezael
bezael / README-español.md
Created February 27, 2020 06:36 — forked from Villanuevand/README-español.md
Una plantilla para hacer un buen README.md. Inspirado en el gist de @PurpleBooth => https://gist.github.com/PurpleBooth/109311bb0361f32d87a2

Título del Proyecto

Acá va un párrafo que describa lo que es el proyecto

Comenzando 🚀

Estas instrucciones te permitirán obtener una copia del proyecto en funcionamiento en tu máquina local para propósitos de desarrollo y pruebas.

Mira Deployment para conocer como desplegar el proyecto.

@bezael
bezael / database.rules.json
Created November 2, 2018 11:11 — forked from codediodeio/database.rules.json
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
@bezael
bezael / Truncate-text-pipe.ts
Created October 27, 2018 08:30
Truncate text by Custom pipe. Angular 6
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'truncateText'
})
export class TruncateTextPipe implements PipeTransform {
transform(value: string, limit: number = 40, trail: String = '…'): string {
let result = value || '';
@bezael
bezael / reset styles browsers
Created September 9, 2018 08:49
Reset for browsers.
/*THE MINIFIED RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers*/