mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 01:46:51 +01:00
lint fix
This commit is contained in:
parent
0b503518b6
commit
ee2611442c
@ -1,5 +1,5 @@
|
||||
<p align="center">
|
||||
<a href="https://kremalicious.com"><img src="https://raw.githubusercontent.com/kremalicious/portfolio/main/public/github-header.png" /></a>
|
||||
<a href="https://kremalicious.com"><img src="https://raw.githubusercontent.com/kremalicious/portfolio/main/public/github-header.png" alt="GitHub Header" /></a>
|
||||
</p>
|
||||
<p align="center">
|
||||
<strong>🍭 My blog built with <a href="https://astro.build">Astro</a> + TypeScript. Neat.</strong>
|
||||
@ -8,9 +8,9 @@
|
||||
<a href="https://kremalicious.com">kremalicious.com</a>
|
||||
</p>
|
||||
<p align="center">
|
||||
<a href="https://github.com/kremalicious/blog/actions"><img src="https://github.com/kremalicious/blog/workflows/CI/badge.svg" /></a>
|
||||
<a href="https://codeclimate.com/github/kremalicious/blog/maintainability"><img src="https://api.codeclimate.com/v1/badges/4e86c791349cd12368cd/maintainability" /></a>
|
||||
<a href="https://codeclimate.com/github/kremalicious/blog/test_coverage"><img src="https://api.codeclimate.com/v1/badges/4e86c791349cd12368cd/test_coverage" /></a>
|
||||
<a href="https://github.com/kremalicious/blog/actions"><img src="https://github.com/kremalicious/blog/workflows/CI/badge.svg" alt="CI workflow badge" /></a>
|
||||
<a href="https://codeclimate.com/github/kremalicious/blog/maintainability"><img src="https://api.codeclimate.com/v1/badges/4e86c791349cd12368cd/maintainability" alt="CodeClimate maintainability badge" /></a>
|
||||
<a href="https://codeclimate.com/github/kremalicious/blog/test_coverage"><img src="https://api.codeclimate.com/v1/badges/4e86c791349cd12368cd/test_coverage" alt="CodeClimate coverage badge" /></a>
|
||||
</p>
|
||||
|
||||
---
|
||||
|
@ -27,7 +27,6 @@ My office is where my MacBook is, all these devices go wherever I travel to:
|
||||
|
||||
- **[MacBook Air M2 (13-inch, 2022)](https://www.apple.com/macbook-air-13-and-15-m2/)**
|
||||
_Midnight, M2 with 8-core CPU and 10-core GPU, 16 GB RAM, 1TB SSD, US International keyboard_
|
||||
|
||||
- **[iPhone 14](https://www.apple.com/iphone-14/)**
|
||||
_Midnight, 128GB_
|
||||
|
||||
|
@ -23,11 +23,11 @@
|
||||
"lint:md": "markdownlint --config '.config/.markdownlint.json' --ignore-path .gitignore --dot './**/*.{md,markdown}'",
|
||||
"format": "prettier --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx,md,json,css,astro,yml}'",
|
||||
"deploy:s3": "./scripts/deploy-s3.sh",
|
||||
"new": "ts-node --esm scripts/new/index.ts",
|
||||
"create:icons": "ts-node --esm scripts/create-icons/index.ts",
|
||||
"create:redirects": "ts-node --esm scripts/redirect-from.ts",
|
||||
"new": "node --loader ts-node/esm scripts/new/index.ts",
|
||||
"create:icons": "node --loader ts-node/esm scripts/create-icons/index.ts",
|
||||
"create:redirects": "node --loader ts-node/esm scripts/redirect-from.ts",
|
||||
"create:symlinks": "./scripts/create-symlinks.sh",
|
||||
"move:downloads": "ts-node --esm scripts/move-downloads.ts",
|
||||
"move:downloads": "node --loader ts-node/esm scripts/move-downloads.ts",
|
||||
"prepare": "husky install .config/husky",
|
||||
"lint:staged": "lint-staged"
|
||||
},
|
||||
|
@ -35,8 +35,8 @@ export function Data({
|
||||
selectedToken?.decimals === 18
|
||||
? formatEther(value as bigint)
|
||||
: selectedToken?.decimals
|
||||
? formatUnits(value as bigint, selectedToken.decimals)
|
||||
: '0'
|
||||
? formatUnits(value as bigint, selectedToken.decimals)
|
||||
: '0'
|
||||
|
||||
return (
|
||||
<table className={styles.table} aria-disabled={isDisabled}>
|
||||
|
Loading…
Reference in New Issue
Block a user