Skip to content

Instantly share code, notes, and snippets.

View chris2cant's full-sized avatar
🚀

Christophe de Canteloube chris2cant

🚀
  • OpenClassrooms
  • France
View GitHub Profile
body {
font-family: "Open Sans", sans-serif;
margin: 0;
}
.c2c-header {
display: flex;
flex-direction: column;
justify-content: center;
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme",
"editor.formatOnSave": true,
"files.autoSave": "onFocusChange",
"workbench.editor.showTabs": false,
"git.autofetch": true,
"explorer.autoReveal": false,
"git.inputValidationSubjectLength": 100,
"window.zoomLevel": 0,

🏗 Angular Schematics

Build

tsconfig

{
  "scripts": {
 "schm:build": "tsc -p tsconfig.schematics.json && cpx schematics/**/{collection.json,schema.json,files/**} dist/schematics"

♿️ Accesibility

Tools

Tips

Display accesibility informations in Chrome Browser

Sublime text Tips

Convert file in one line

Before

export const myFunc = () => {
	console.log('Hello');
}

Array

Map

Data

let animals = [
    {name: 'Tibbers', type: 'cat', isNeutered: true, age: 2},
    {name: 'Fluffball', type: 'rabbit', isNeutered: false, age: 1},