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:
Jas Singh
2024-09-14 16:20:05 -07:00
committed by GitHub
parent ff13e3dd3c
commit 2c72cc66d8
222 changed files with 13141 additions and 8433 deletions

View File

@@ -1,40 +1,41 @@
import brightness from "../../../../services/Brightness.js";
import icons from "../../../icons/index.js";
import { BoxWidget } from 'lib/types/widget.js';
import brightness from '../../../../services/Brightness.js';
import icons from '../../../icons/index.js';
const Brightness = () => {
const Brightness = (): BoxWidget => {
return Widget.Box({
class_name: "menu-section-container brightness",
class_name: 'menu-section-container brightness',
vertical: true,
children: [
Widget.Box({
class_name: "menu-label-container",
hpack: "fill",
class_name: 'menu-label-container',
hpack: 'fill',
child: Widget.Label({
class_name: "menu-label",
class_name: 'menu-label',
hexpand: true,
hpack: "start",
label: "Brightness",
hpack: 'start',
label: 'Brightness',
}),
}),
Widget.Box({
class_name: "menu-items-section",
vpack: "fill",
class_name: 'menu-items-section',
vpack: 'fill',
vexpand: true,
vertical: true,
child: Widget.Box({
class_name: "brightness-container",
class_name: 'brightness-container',
children: [
Widget.Icon({
vexpand: true,
vpack: "center",
class_name: "brightness-slider-icon",
vpack: 'center',
class_name: 'brightness-slider-icon',
icon: icons.brightness.screen,
}),
Widget.Slider({
vpack: "center",
vpack: 'center',
vexpand: true,
value: brightness.bind("screen"),
class_name: "menu-active-slider menu-slider brightness",
value: brightness.bind('screen'),
class_name: 'menu-active-slider menu-slider brightness',
draw_value: false,
hexpand: true,
min: 0,
@@ -42,12 +43,10 @@ const Brightness = () => {
onChange: ({ value }) => (brightness.screen = value),
}),
Widget.Label({
vpack: "center",
vpack: 'center',
vexpand: true,
class_name: "brightness-slider-label",
label: brightness
.bind("screen")
.as((b) => `${Math.round(b * 100)}%`),
class_name: 'brightness-slider-label',
label: brightness.bind('screen').as((b) => `${Math.round(b * 100)}%`),
}),
],
}),