prettier and eslint ignore valid syntax for qml specific syntax. Clippy lint resolved in .rs. unused py files commented to be ignored by ruff

This commit is contained in:
2026-05-19 23:53:09 +02:00
parent ceca949535
commit dd49198cf7
10 changed files with 240 additions and 224 deletions
+12 -10
View File
@@ -1,11 +1,13 @@
import json
import typer
from zshell.assets.schemes.catppuccin import catppuccin
# import json
# import typer
# from zshell.assets.schemes.catppuccin import catppuccin
#
# app = typer.Typer()
#
# SCHEMES = catppuccin.variants.flavors
#
#
# @app.command()
# def set():
app = typer.Typer()
SCHEMES = catppuccin.variants.flavors
@app.command()
def set():
# TODO: Currently unsused
+15 -13
View File
@@ -1,14 +1,16 @@
import typer
import subprocess
# import typer
# import subprocess
#
# from typing import Optional
#
# app = typer.Typer()
#
# RECORDER = "gpu-screen-recorder"
# HOME = str(os.getenv("HOME"))
# CONFIG = Path(HOME + "/.config/zshell/config.json")
#
#
# @app.command()
# def start():
from typing import Optional
app = typer.Typer()
RECORDER = "gpu-screen-recorder"
HOME = str(os.getenv("HOME"))
CONFIG = Path(HOME + "/.config/zshell/config.json")
@app.command()
def start():
# TODO: Currently unused