Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the major group across 1 directory with 4 updates #338

Merged
merged 4 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
"extends": [
"next/core-web-vitals",
"eslint:recommended",
"next/typescript",
// "eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:import/recommended",
Expand All @@ -19,21 +20,21 @@
"root": true,
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1,
"VariableDeclarator": 1
}
"error",
4,
{
"SwitchCase": 1,
"VariableDeclarator": 1
}
],
// require function expressions to have a name
"func-names": "warn",
// enforce newline at the end of file, with no multiple empty lines
"eol-last": "error",
// disallow padding inside computed properties, ie. obj[ "fjie"] not allowed
"computed-property-spacing": [
"error",
"never"
"error",
"never"
],
// suggest using arrow functions as callbacks
"prefer-arrow-callback": "error",
Expand Down Expand Up @@ -110,17 +111,17 @@
}
],
"quotes": [
"error",
"single",
"avoid-escape"
"error",
"single",
"avoid-escape"
],
"jsx-quotes": ["error", "prefer-double"],
// require camel case names
"camelcase": [
"error",
{
"properties": "never"
}
"error",
{
"properties": "never"
}
],
// enforce spacing before and after comma
"comma-spacing": [
Expand Down Expand Up @@ -493,18 +494,17 @@
"warn",
{
"groups": [
"index",
"sibling",
"parent",
"internal",
"external",
"builtin",
"object",
"type"
"index",
"sibling",
"parent",
"internal",
"external",
"builtin",
"object",
"type"
]
}
],
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/consistent-type-imports": [
"error",
{
Expand Down
Loading
Loading