ng add @angular-eslint/schematics
npm i prettier prettier-eslint eslint-config-prettier eslint-plugin-prettier -D
Filename: .eslintrc.json
| { | |
| "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" | |
| }, | |
| { |
| // No Security | |
| { | |
| "rules": { | |
| ".read": true, | |
| ".write": true | |
| } | |
| } |
| 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 || ''; |
| /*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*/ |