mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-31 01:23:51 -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
|
||||
linuxHeaders
|
||||
#NODE
|
||||
nodePackages.nodemon
|
||||
nodePackages.ts-node
|
||||
nodePackages.pnpm
|
||||
nodePackages.prisma
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue