More cleanup
This commit is contained in:
parent
872f5471a5
commit
d39da9af71
@ -1,3 +1,9 @@
|
|||||||
{
|
{
|
||||||
"extends": "next/core-web-vitals"
|
"extends": ["next/core-web-vitals", "next/typescript"],
|
||||||
|
"rules": {
|
||||||
|
"no-mixed-spaces-and-tabs": "off",
|
||||||
|
"no-restricted-syntax": ["error", "WithStatement"],
|
||||||
|
"@typescript-eslint/no-shadow": "error",
|
||||||
|
"@typescript-eslint/no-empty-function": "error"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
7
.prettierrc.toml
Normal file
7
.prettierrc.toml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
trailingComma = "all"
|
||||||
|
semi = true
|
||||||
|
singleQuote = false
|
||||||
|
|
||||||
|
bracketSpacing = true
|
||||||
|
bracketSameLine = false
|
||||||
|
arrowParens = "always"
|
4
LICENSE
4
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2021 Nilay Majorwar
|
Copyright (c) 2024 mark@betalupi.com
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
9
ui/assets/generate-ico.sh
Normal file
9
ui/assets/generate-ico.sh
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
SOURCE="$1"
|
||||||
|
|
||||||
|
inkscape -w 16 -h 16 -o 16.png "$SOURCE"
|
||||||
|
inkscape -w 32 -h 32 -o 32.png "$SOURCE"
|
||||||
|
inkscape -w 64 -h 128 -o 64.png "$SOURCE"
|
||||||
|
inkscape -w 128 -h 128 -o 128.png "$SOURCE"
|
||||||
|
|
||||||
|
magick 16.png 32.png 64.png 128.png favicon.ico
|
Loading…
x
Reference in New Issue
Block a user