-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v3.0.3 * CI fixing * CI fixing * Lint fix * Tests fixes
- Loading branch information
1 parent
fe606a9
commit 0b8a563
Showing
103 changed files
with
1,709 additions
and
2,149 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 |
---|---|---|
@@ -1,82 +1,90 @@ | ||
parser: "@typescript-eslint/parser" | ||
extends: | ||
- "airbnb-typescript/base" | ||
- airbnb-base | ||
parserOptions: | ||
ecmaVersion: 2018 | ||
sourceType: "module" | ||
project: "./tsconfig.lint.json" | ||
project: ./tsconfig.lint.json | ||
plugins: | ||
- "import" | ||
- 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" | ||
"@typescript-eslint/lines-between-class-members": off | ||
arrow-parens: | ||
- error | ||
- as-needed | ||
class-methods-use-this: off | ||
eol-last: error | ||
import/extensions: off | ||
import/no-cycle: off | ||
import/no-unresolved: 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 | ||
no-dupe-class-members: off | ||
no-unused-vars: off | ||
no-useless-constructor: off | ||
no-empty-function: off | ||
no-param-reassign: off | ||
no-shadow: off | ||
no-redeclare: off | ||
padding-line-between-statements: | ||
- error | ||
- blankLine: always | ||
prev: "*" | ||
next: | ||
- "block" | ||
- "block-like" | ||
- "cjs-export" | ||
- "class" | ||
- "const" | ||
- "export" | ||
- "import" | ||
- "let" | ||
- "var" | ||
- blankLine: "always" | ||
- 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" | ||
- block | ||
- block-like | ||
- cjs-export | ||
- class | ||
- const | ||
- export | ||
- import | ||
- let | ||
- var | ||
next: "*" | ||
- blankLine: "any" | ||
- blankLine: any | ||
prev: | ||
- "const" | ||
- "let" | ||
- "var" | ||
- const | ||
- let | ||
- var | ||
next: | ||
- "const" | ||
- "let" | ||
- "var" | ||
- blankLine: "never" | ||
- const | ||
- let | ||
- var | ||
- blankLine: never | ||
prev: | ||
- "import" | ||
- import | ||
next: | ||
- "import" | ||
- blankLine: "always" | ||
- import | ||
- blankLine: always | ||
prev: | ||
- "import" | ||
- import | ||
next: | ||
- "export" | ||
- blankLine: "any" | ||
- export | ||
- blankLine: any | ||
prev: | ||
- "export" | ||
- export | ||
next: | ||
- "export" | ||
- export | ||
settings: | ||
import/parsers: | ||
"@typescript-eslint/parser": | ||
- ".ts" | ||
- .ts |
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
Oops, something went wrong.