- Ruler Measurement
- Dimensions
- WhatFont
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Enumeration of Firebase Auth error codes. | |
* | |
* @internal | |
*/ | |
// File location: ""node_modules/@firebase/auth/dist/auth.d.ts" " | |
declare const enum AuthErrorCode { | |
ADMIN_ONLY_OPERATION = "admin-restricted-operation", | |
ARGUMENT_ERROR = "argument-error", | |
APP_NOT_AUTHORIZED = "app-not-authorized", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require('path'); | |
module.exports = { | |
entry: './app.js', | |
output: { | |
path: path.resolve(__dirname), | |
filename: 'bundle.js', | |
}, | |
mode: 'development', | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
@layer components { | |
h1 { | |
@apply text-2xl; | |
} | |
h2 { |
- Auto Close Tag
- Auto Rename Tag
- vscode-language-babel
- Better Comments
- Bracket Pair Colorizer
- vscode-ext-color-highlight
- CSS Peek
- CssTriggers
- VS Code ESLint extension
- Git Graph extension for Visual Studio Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.shellArgs.windows": ["-ExecutionPolicy", "Bypass"], | |
"editor.tabSize": 2, | |
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"workbench.sideBar.location": "left", | |
"editor.formatOnSave": true, | |
// "eslint.autoFixOnSave": true, | |
// "[javascript]": { | |
// "editor.formatOnSave": false |
- Auto Close Tag
- Auto Rename Tag
- vscode-language-babel
- Better Comments
- Bracket Pair Colorized
- Browser Preview for VS Code
- Code Runner
- vscode-ext-color-highlight
- Draw.io VS Code Integration
- Formatting Toggle
- Install ESLint and Prettier - Code formatter for VS Code.
- Run
npm init -y
to create apackage.json
file in your working directory. - Install ESLint as a dev dependencies:
npm i -D eslint
. - Run:
.\node_modules\.bin\eslint --init
and choose the following options:
- How would you like to use ESLint? To check syntax, find problems, and enforce code style
- What type of modules does your project use? JavaScript modules (import/export)
- Which framework does your project use? None of these
- Does your project use TypeScript? No
- Where does your code run? Browser
- How would you like to define a style for your project? Use a popular style guide
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"author": "Chinua Achebe", | |
"country": "Nigeria", | |
"imageLink": "images/things-fall-apart.jpg", | |
"language": "English", | |
"link": "https://en.wikipedia.org/wiki/Things_Fall_Apart\n", | |
"pages": 209, | |
"title": "Things Fall Apart", | |
"year": 1958 |