Implemented strict linting standards and prettier formatting config. (#248)
* Implemented strict linting standards and prettier formatting config. * More linter fixes and type updates. * More linter updates and type fixes * Remove noisy comments * Linter and type updates * Linter, formatting and type updates. * Linter updates * Type updates * Type updates * fixed all linter errors * Fixed all linting, formatting and type issues. * Resolve merge conflicts.
This commit is contained in:
30
main.ts
30
main.ts
@@ -1,27 +1,21 @@
|
||||
import "lib/session";
|
||||
import "scss/style";
|
||||
import "globals/useTheme";
|
||||
import "globals/mousePos";
|
||||
import 'lib/session';
|
||||
import 'scss/style';
|
||||
import 'globals/useTheme';
|
||||
import 'globals/mousePos';
|
||||
|
||||
import { Bar } from "modules/bar/Bar";
|
||||
import MenuWindows from "./modules/menus/main.js";
|
||||
import SettingsDialog from "widget/settings/SettingsDialog";
|
||||
import Notifications from "./modules/notifications/index.js";
|
||||
import { forMonitors } from "lib/utils";
|
||||
import OSD from "modules/osd/index";
|
||||
import { Bar } from 'modules/bar/Bar';
|
||||
import MenuWindows from './modules/menus/main.js';
|
||||
import SettingsDialog from 'widget/settings/SettingsDialog';
|
||||
import Notifications from './modules/notifications/index.js';
|
||||
import { forMonitors } from 'lib/utils';
|
||||
import OSD from 'modules/osd/index';
|
||||
|
||||
App.config({
|
||||
onConfigParsed: () => Utils.execAsync(`python3 ${App.configDir}/services/bluetooth.py`),
|
||||
windows: [
|
||||
...MenuWindows,
|
||||
Notifications(),
|
||||
SettingsDialog(),
|
||||
...forMonitors(Bar),
|
||||
OSD(),
|
||||
],
|
||||
windows: [...MenuWindows, Notifications(), SettingsDialog(), ...forMonitors(Bar), OSD()],
|
||||
closeWindowDelay: {
|
||||
sideright: 350,
|
||||
launcher: 350,
|
||||
bar0: 350,
|
||||
},
|
||||
})
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user