123 current 2024-05-11 14:53:18 24.05.20240419.5c24cf2 6.6.28 *

This commit is contained in:
sadanslargehole 2024-05-11 14:53:31 -04:00
parent 555d04a095
commit 3d70eff447
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800
2 changed files with 108 additions and 86 deletions

View file

@ -55,6 +55,7 @@ in
tokyo-night-gtk
linuxHeaders
#NODE
nodePackages.nodemon
nodePackages.ts-node
nodePackages.pnpm
nodePackages.prisma

View file

@ -19,7 +19,7 @@
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": ["@stylistic"],
"plugins": ["@stylistic", "@stylistic/jsx"],
"rules": {
"@stylistic/indent": ["error", 4],
"@stylistic/linebreak-style": ["error", "unix"],
@ -85,6 +85,27 @@
}
],
"@stylistic/lines-between-class-members": ["error", "always"],
"@stylistic/new-parens": ["error", "always"]
"@stylistic/new-parens": ["error", "always"],
"@stylistic/jsx/jsx-indent": [
"error",
4,
{
"checkAttributes": true,
"indentLogicalExpressions": true
}
],
"@stylistic/jsx/jsx-closing-bracket-location": [
"error",
{
"nonEmpty": "props-aligned",
"selfClosing": "after-props"
}
],
"@stylistic/jsx/jsx-one-expression-per-line": [
"error",
{
"allow": "none"
}
]
}
}