3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 19:17:19 +00:00

chore: run formatter

This commit is contained in:
almeidx 2025-06-01 16:05:34 +01:00
parent 3ef89246ba
commit 3722393ec0
No known key found for this signature in database
40 changed files with 13085 additions and 13040 deletions

View file

@ -1,9 +0,0 @@
module.exports = {
extends: ["../.eslintrc.js"],
rules: {
"@typescript-eslint/no-unused-vars": 0,
"no-self-assign": 0,
"no-empty": 0,
"@typescript-eslint/no-var-requires": 0,
},
};

9
dashboard/.eslintrc.json Normal file
View file

@ -0,0 +1,9 @@
{
"extends": ["../.eslintrc.js"],
"rules": {
"@typescript-eslint/no-unused-vars": 0,
"no-self-assign": 0,
"no-empty": 0,
"@typescript-eslint/no-var-requires": 0
}
}

View file

@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />

View file

@ -1,4 +1,13 @@
body {
font: normal 18px/1.5 sans-serif;
font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
font-family:
system,
-apple-system,
".SFNSText-Regular",
"San Francisco",
"Roboto",
"Segoe UI",
"Helvetica Neue",
"Lucida Grande",
sans-serif;
}

View file

@ -6,6 +6,6 @@
@media (width < theme(--breakpoint-lg)) {
.docs-sidebar.closed:not(:focus-within) {
@apply sr-only;
@apply sr-only;
}
}

View file

@ -121,7 +121,7 @@
& li:not(:first-child)::before {
display: block;
content: ' ';
content: " ";
width: 4px;
height: 4px;
border-radius: 50%;

View file

@ -1,6 +1,6 @@
/// <reference types="vite/client" />
declare module '*.html' {
declare module "*.html" {
const value: string;
export default value;
}