-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dependencies updated, eslint config converted to yaml
- Loading branch information
1 parent
47db5aa
commit 69ae80f
Showing
4 changed files
with
1,206 additions
and
771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
Oops, something went wrong.