Skip to content

Commit

Permalink
Enabling recommended jsdoc in the SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
kraenhansen committed Apr 28, 2023
1 parent 659ddff commit 360761c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/realm/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended"
"plugin:@typescript-eslint/recommended",
"plugin:jsdoc/recommended-typescript"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"no-console": "error",
"sort-imports": ["warn", { "ignoreDeclarationSort": true }]
"sort-imports": ["warn", { "ignoreDeclarationSort": true }],
"jsdoc/check-tag-names": "off"
}
}

0 comments on commit 360761c

Please sign in to comment.