Skip to content

Commit

Permalink
undo lint on file
Browse files Browse the repository at this point in the history
  • Loading branch information
SrBrahma committed Mar 31, 2024
1 parent c985dae commit 903aad4
Showing 1 changed file with 8 additions and 44 deletions.
52 changes: 8 additions & 44 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"plugins": [
"@typescript-eslint",
"unicorn"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": ["@typescript-eslint", "unicorn"],
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
"rules": {
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/no-explicit-any": "error",
Expand All @@ -15,44 +9,14 @@
"no-console": "error",
"@typescript-eslint/padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": [
"const",
"let"
],
"next": "*"
},
{ "blankLine": "always", "prev": ["const", "let"], "next": "*" },
{
"blankLine": "any",
"prev": [
"const",
"let"
],
"next": [
"const",
"let"
]
"prev": ["const", "let"],
"next": ["const", "let"]
},
{
"blankLine": "always",
"prev": [
"*"
],
"next": [
"if",
"return"
]
},
{
"blankLine": "always",
"prev": [
"*"
],
"next": [
"try"
]
}
{ "blankLine": "always", "prev": ["*"], "next": ["if", "return"] },
{ "blankLine": "always", "prev": ["*"], "next": ["try"] }
]
}
}
}

0 comments on commit 903aad4

Please sign in to comment.