Skip to content

Commit c60351e

Browse files
committed
Run Prettier
1 parent 5356dc1 commit c60351e

33 files changed

Lines changed: 1701 additions & 1129 deletions

.github/workflows/node.js.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ name: Node.js CI
22

33
on:
44
push:
5-
branches: [ "master" ]
5+
branches: ["master"]
66
pull_request:
7-
branches: [ "master" ]
7+
branches: ["master"]
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
strategy:
@@ -22,7 +21,7 @@ jobs:
2221
uses: actions/setup-node@v4
2322
with:
2423
node-version: ${{ matrix.node-version }}
25-
cache: 'npm'
24+
cache: "npm"
2625
- run: npm ci
2726
- run: npm run build --if-present
2827
- run: npm test

LICENSE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
The MIT License (MIT)
2-
=====================
1+
# The MIT License (MIT)
32

43
Copyright © 2025 LBRY Foundation
54

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
The LBRY Web interface to interact with the LBRY Daemon from in the browser.
77

88
## License
9-
This project is MIT licensed. For the full license, see [LICENSE](LICENSE.md).
109

10+
This project is MIT licensed. For the full license, see [LICENSE](LICENSE.md).

eslint.config.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
import js from '@eslint/js'
2-
import globals from 'globals'
3-
import reactHooks from 'eslint-plugin-react-hooks'
4-
import reactRefresh from 'eslint-plugin-react-refresh'
5-
import tseslint from 'typescript-eslint'
6-
import { defineConfig, globalIgnores } from 'eslint/config'
1+
import js from "@eslint/js";
2+
import globals from "globals";
3+
import reactHooks from "eslint-plugin-react-hooks";
4+
import reactRefresh from "eslint-plugin-react-refresh";
5+
import tseslint from "typescript-eslint";
6+
import { defineConfig, globalIgnores } from "eslint/config";
77

88
export default defineConfig([
9-
globalIgnores(['dist']),
9+
globalIgnores(["dist"]),
1010
{
11-
files: ['**/*.{ts,tsx}'],
11+
files: ["**/*.{ts,tsx}"],
1212
extends: [
1313
js.configs.recommended,
1414
tseslint.configs.recommended,
@@ -20,4 +20,4 @@ export default defineConfig([
2020
globals: globals.browser,
2121
},
2222
},
23-
])
23+
]);

index.html

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head prefix="og: https://ogp.me/ns#">
4-
<meta charset="UTF-8" />
5-
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/favicon.ico" />
6-
<meta content="default-src 'self'; script-src 'self'; connect-src *; img-src *; style-src * 'unsafe-inline'; media-src * 'unsafe-inline'; frame-src * 'unsafe-inline';" http-equiv="Content-Security-Policy" />
7-
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
8-
<meta content="summary" name="twitter:card">
9-
<meta content="/favicon.ico" name="twitter:image">
10-
<meta content="LBRY Web" name="twitter:title">
11-
<meta content="/" name="twitter:url">
12-
<meta content="website" property="og:type">
13-
<meta content="en_US" property="og:locale">
14-
<meta content="/favicon.ico" property="og:image">
15-
<meta content="LBRY Web" property="og:title">
16-
<meta content="/" property="og:url">
17-
<script type="module" src="/src/main.tsx"></script>
18-
<title>LBRY Web</title>
19-
</head>
20-
<body>
21-
<div id="root"></div>
22-
</body>
3+
<head prefix="og: https://ogp.me/ns#">
4+
<meta charset="UTF-8" />
5+
<link
6+
rel="shortcut icon"
7+
type="image/vnd.microsoft.icon"
8+
href="/favicon.ico"
9+
/>
10+
<meta
11+
content="default-src 'self'; script-src 'self'; connect-src *; img-src *; style-src * 'unsafe-inline'; media-src * 'unsafe-inline'; frame-src * 'unsafe-inline';"
12+
http-equiv="Content-Security-Policy"
13+
/>
14+
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
15+
<meta content="summary" name="twitter:card" />
16+
<meta content="/favicon.ico" name="twitter:image" />
17+
<meta content="LBRY Web" name="twitter:title" />
18+
<meta content="/" name="twitter:url" />
19+
<meta content="website" property="og:type" />
20+
<meta content="en_US" property="og:locale" />
21+
<meta content="/favicon.ico" property="og:image" />
22+
<meta content="LBRY Web" property="og:title" />
23+
<meta content="/" property="og:url" />
24+
<script type="module" src="/src/main.tsx"></script>
25+
<title>LBRY Web</title>
26+
</head>
27+
<body>
28+
<div id="root"></div>
29+
</body>
2330
</html>

package-lock.json

Lines changed: 116 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)