Skip to content

Commit

Permalink
Indent with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
probablykasper committed Feb 15, 2024
1 parent e076e02 commit 4fb479b
Show file tree
Hide file tree
Showing 26 changed files with 5,031 additions and 5,026 deletions.
58 changes: 29 additions & 29 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
ignorePatterns: ['*.cjs'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte'],
},
env: {
browser: true,
es2017: true,
node: true,
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
},
],
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
ignorePatterns: ['*.cjs'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte'],
},
env: {
browser: true,
es2017: true,
node: true,
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
},
],
}
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<p align="center">
<img src="./assets/Logo.png" width="80">
<img src="./assets/Logo.png" width="80">
</p>
<h3 align="center">Time Machine Inspector</h3>
<p align="center">
Find out what's hogging up your backups
<br/>
<a href="https://github.com/probablykasper/time-machine-inspector/releases"><b>Download for Mac</b></a>
Find out what's hogging up your backups
<br/>
<a href="https://github.com/probablykasper/time-machine-inspector/releases"><b>Download for Mac</b></a>
</p>
<br/>

Expand Down
2 changes: 1 addition & 1 deletion bindings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function destinationinfo() {
}

export type Backup = { path: string; name: string }
export type LoadedBackupItem = { size: number }
export type DestinationDetail = { id: string; mount_point: string; mount_point_name: string }
export type DirMap = { map: { [key: string]: { [key: string]: LoadedBackupItem } } }
export type LoadedBackupItem = { size: number }
export type BackupInfo = { old: string; new: string; loading: boolean }
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<script type="module" src="src/main.ts"></script>
</body>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<script type="module" src="src/main.ts"></script>
</body>
</html>
Loading

0 comments on commit 4fb479b

Please sign in to comment.