-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v1.7.3 * Use expand parameter in getContentByTypeForSpace (#137) * Use expand parameter in getContentByTypeForSpace * Use expand parameter in getContentForSpace * fix: getContentComments expand field not being used (#139) * CI/CD Changes --------- Co-authored-by: Lari Tikkanen <134509353+laritikkanen@users.noreply.github.com> Co-authored-by: Alexander G <alexxandergrib@gmail.com>
- Loading branch information
1 parent
6c835f8
commit 686bd67
Showing
26 changed files
with
1,887 additions
and
1,855 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,91 @@ | ||
parser: "@typescript-eslint/parser" | ||
extends: | ||
- airbnb-base | ||
parserOptions: | ||
ecmaVersion: 2018 | ||
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/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 | ||
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 | ||
|
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.