mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-07 09:13:37 -05:00
123 current 2024-05-11 14:53:18 24.05.20240419.5c24cf2 6.6.28 *
This commit is contained in:
parent
555d04a095
commit
3d70eff447
2 changed files with 108 additions and 86 deletions
|
@ -55,6 +55,7 @@ in
|
||||||
tokyo-night-gtk
|
tokyo-night-gtk
|
||||||
linuxHeaders
|
linuxHeaders
|
||||||
#NODE
|
#NODE
|
||||||
|
nodePackages.nodemon
|
||||||
nodePackages.ts-node
|
nodePackages.ts-node
|
||||||
nodePackages.pnpm
|
nodePackages.pnpm
|
||||||
nodePackages.prisma
|
nodePackages.prisma
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": "latest"
|
"ecmaVersion": "latest"
|
||||||
},
|
},
|
||||||
"plugins": ["@stylistic"],
|
"plugins": ["@stylistic", "@stylistic/jsx"],
|
||||||
"rules": {
|
"rules": {
|
||||||
"@stylistic/indent": ["error", 4],
|
"@stylistic/indent": ["error", 4],
|
||||||
"@stylistic/linebreak-style": ["error", "unix"],
|
"@stylistic/linebreak-style": ["error", "unix"],
|
||||||
|
@ -85,6 +85,27 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"@stylistic/lines-between-class-members": ["error", "always"],
|
"@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"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue