Skip to content

Commit 32020fa

Browse files
committed
Put semicolons back
1 parent 9c6744c commit 32020fa

31 files changed

+882
-883
lines changed

.prettierrc.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
singleQuote: true
2-
semi: false
32
printWidth: 100
43
trailingComma: none

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ Subsequent builds only require the `npm run dev` command if you only wish to mod
143143
TrackAudio will be automatically packaged as a .dmg on macOs, .deb on Linux and .exe installer on windows. To package run the
144144
appropriate command for the desired platform.
145145

146-
| Platform | Command |
147-
| - | - |
148-
| Linux | `npm run build:linux` |
149-
| Mac | `npm run build:mac` |
150-
| Windows | `npm run build:win` |
146+
| Platform | Command |
147+
| -------- | --------------------- |
148+
| Linux | `npm run build:linux` |
149+
| Mac | `npm run build:mac` |
150+
| Windows | `npm run build:win` |
151151

152152
## Contributing
153153

electron.vite.config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { resolve } from 'path'
2-
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite'
3-
import react from '@vitejs/plugin-react'
1+
import { resolve } from 'path';
2+
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite';
3+
import react from '@vitejs/plugin-react';
44

55
export default defineConfig({
66
main: {
@@ -20,4 +20,4 @@ export default defineConfig({
2020
},
2121
plugins: [react()]
2222
}
23-
})
23+
});

eslint.config.mjs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import globals from 'globals'
2-
import pluginJs from '@eslint/js'
3-
import tseslint from 'typescript-eslint'
4-
import pluginReactConfig from 'eslint-plugin-react/configs/recommended.js'
1+
import globals from 'globals';
2+
import pluginJs from '@eslint/js';
3+
import tseslint from 'typescript-eslint';
4+
import pluginReactConfig from 'eslint-plugin-react/configs/recommended.js';
55

66
export default [
77
{
@@ -30,4 +30,4 @@ export default [
3030
...tseslint.configs.recommended,
3131
pluginReactConfig,
3232
{ settings: { react: { version: 'detect' } } }
33-
]
33+
];

src/main/config.d.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
export interface Configuration {
2-
audioApi: number
3-
audioInputDeviceId: string
4-
headsetOutputDeviceId: string
5-
speakerOutputDeviceId: string
2+
audioApi: number;
3+
audioInputDeviceId: string;
4+
headsetOutputDeviceId: string;
5+
speakerOutputDeviceId: string;
66

7-
cid: string
8-
password: string
9-
callsign: string
7+
cid: string;
8+
password: string;
9+
callsign: string;
1010

11-
hardwareType: number
12-
radioGain: number
11+
hardwareType: number;
12+
radioGain: number;
1313

14-
alwaysOnTop: boolean
15-
consentedToTelemetry: boolean | undefined
14+
alwaysOnTop: boolean;
15+
consentedToTelemetry: boolean | undefined;
1616
}

0 commit comments

Comments
 (0)