Skip to content

Commit e8ffb1b

Browse files
committed
Formatting
1 parent 023d4fe commit e8ffb1b

File tree

89 files changed

+8861
-8795
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+8861
-8795
lines changed

.eslintrc.cjs

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
module.exports = {
2-
root: true,
3-
extends: [
4-
'eslint:recommended',
5-
'plugin:@typescript-eslint/recommended',
6-
'plugin:svelte/recommended',
7-
'prettier'
8-
],
9-
parser: '@typescript-eslint/parser',
10-
plugins: ['@typescript-eslint'],
11-
parserOptions: {
12-
sourceType: 'module',
13-
ecmaVersion: 2020,
14-
extraFileExtensions: ['.svelte']
15-
},
16-
env: {
17-
browser: true,
18-
es2017: true,
19-
node: true
20-
},
21-
overrides: [
22-
{
23-
files: ['*.svelte'],
24-
parser: 'svelte-eslint-parser',
25-
parserOptions: {
26-
parser: '@typescript-eslint/parser'
27-
}
28-
}
29-
]
2+
root: true,
3+
extends: [
4+
'eslint:recommended',
5+
'plugin:@typescript-eslint/recommended',
6+
'plugin:svelte/recommended',
7+
'prettier'
8+
],
9+
parser: '@typescript-eslint/parser',
10+
plugins: ['@typescript-eslint'],
11+
parserOptions: {
12+
sourceType: 'module',
13+
ecmaVersion: 2020,
14+
extraFileExtensions: ['.svelte']
15+
},
16+
env: {
17+
browser: true,
18+
es2017: true,
19+
node: true
20+
},
21+
overrides: [
22+
{
23+
files: ['*.svelte'],
24+
parser: 'svelte-eslint-parser',
25+
parserOptions: {
26+
parser: '@typescript-eslint/parser'
27+
}
28+
}
29+
]
3030
};

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm" # See documentation for possible values
4-
directory: "/" # Location of package manifests
3+
- package-ecosystem: 'npm' # See documentation for possible values
4+
directory: '/' # Location of package manifests
55
schedule:
6-
interval: "weekly"
6+
interval: 'weekly'

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v3
2020
with:
21-
node-version: "20"
22-
cache: "npm"
21+
node-version: '20'
22+
cache: 'npm'
2323
- run: npm ci
2424
- run: npm run build
2525
build-docker:

.prettierrc

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,8 @@
11
{
2-
"useTabs": false,
3-
"singleQuote": true,
4-
"trailingComma": "none",
5-
"printWidth": 100,
6-
"plugins": [
7-
"prettier-plugin-svelte"
8-
],
9-
"pluginSearchDirs": [
10-
"."
11-
],
12-
"overrides": [
13-
{
14-
"files": "*.svelte",
15-
"options": {
16-
"parser": "svelte"
17-
}
18-
}
19-
]
20-
}
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 100,
6+
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
7+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
8+
}

.vscode/launch.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
// Use IntelliSense to learn about possible attributes.
3-
// Hover to view descriptions of existing attributes.
4-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"type": "chrome",
9-
"request": "launch",
10-
"name": "Launch Chrome against localhost",
11-
"url": "http://localhost:8080",
12-
"webRoot": "${workspaceFolder}"
13-
}
14-
]
15-
}
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "chrome",
9+
"request": "launch",
10+
"name": "Launch Chrome against localhost",
11+
"url": "http://localhost:8080",
12+
"webRoot": "${workspaceFolder}"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)