Skip to content

Instantly share code, notes, and snippets.

View ConxiCR's full-sized avatar

ConxiCR ConxiCR

  • Barcelona
View GitHub Profile
@ConxiCR
ConxiCR / .gitignore
Created February 20, 2023 21:15 — forked from octocat/.gitignore
Some common .gitignore configurations
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
# Packages #

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

@Klerith
Klerith / instalaciones-node.md
Created January 26, 2021 22:39
Instalaciones recomendadas y obligatorias para seguir el curso de Node
@Klerith
Klerith / instalaciones-angular.md
Created January 21, 2021 15:18
Instalaciones necesarias y recomendadas - Curso de Angular de cero a experto
@Klerith
Klerith / estilos-basicos.css
Created December 1, 2020 19:01
Estilos básicos para la introducción de Angular
* {
font-family: Helvetica, Arial, sans-serif;
font-weight: 200;
}
html, body {
background: white;
margin: 20px;
color: #3e4144;