Skip to content

Commit

Permalink
Dependencies updated, eslint config converted to yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRefactoring committed Jan 3, 2024
1 parent 47db5aa commit 69ae80f
Show file tree
Hide file tree
Showing 4 changed files with 1,206 additions and 771 deletions.
126 changes: 0 additions & 126 deletions .eslintrc

This file was deleted.

82 changes: 82 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
parser: "@typescript-eslint/parser"
extends:
- "airbnb-typescript/base"
parserOptions:
ecmaVersion: 2018
sourceType: "module"
project: "./tsconfig.lint.json"
plugins:
- "import"
env:
node: true
browser: true
rules:
"@typescript-eslint/lines-between-class-members": "off"
"arrow-parens":
- "error"
- "as-needed"
"class-methods-use-this": "off"
"eol-last": "error"
"import/no-cycle": "off"
"import/prefer-default-export": "off"
"linebreak-style":
- "error"
- "unix"
"lines-between-class-members": "off"
"max-len": "off"
"no-trailing-spaces": "error"
"no-underscore-dangle": "off"
"padding-line-between-statements":
- "error"
- blankLine: "always"
prev: "*"
next:
- "block"
- "block-like"
- "cjs-export"
- "class"
- "const"
- "export"
- "import"
- "let"
- "var"
- blankLine: "always"
prev:
- "block"
- "block-like"
- "cjs-export"
- "class"
- "const"
- "export"
- "import"
- "let"
- "var"
next: "*"
- blankLine: "any"
prev:
- "const"
- "let"
- "var"
next:
- "const"
- "let"
- "var"
- blankLine: "never"
prev:
- "import"
next:
- "import"
- blankLine: "always"
prev:
- "import"
next:
- "export"
- blankLine: "any"
prev:
- "export"
next:
- "export"
settings:
import/parsers:
"@typescript-eslint/parser":
- ".ts"
Loading

0 comments on commit 69ae80f

Please sign in to comment.