Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DaveMBush committed Nov 22, 2024
1 parent e270eed commit 3849043
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ const { join } = require("path");
module.exports = {
parser: "@typescript-eslint/parser",
// parserOptions here
plugins: ["rxjs"],
plugins: ["@smarttools/rxjs"],
extends: [],
rules: {
"rxjs/no-async-subscribe": "error",
"@smarttools/rxjs/no-async-subscribe": "error",
...etc.
}
};
Expand Down Expand Up @@ -88,7 +88,7 @@ const { join } = require("path");
module.exports = {
parser: "@typescript-eslint/parser",
// parserOptions here
extends: ["plugin:rxjs/recommended"],
extends: ["plugin:@smarttools/rxjs/recommended"],
};

```
Expand Down
6 changes: 3 additions & 3 deletions packages/eslint-plugin-rxjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ const { join } = require("path");
module.exports = {
parser: "@typescript-eslint/parser",
// parserOptions here
plugins: ["rxjs"],
plugins: ["@smarttools/rxjs"],
extends: [],
rules: {
"rxjs/no-async-subscribe": "error",
"@smarttools/rxjs/no-async-subscribe": "error",
...etc.
}
};
Expand Down Expand Up @@ -88,7 +88,7 @@ const { join } = require("path");
module.exports = {
parser: "@typescript-eslint/parser",
// parserOptions here
extends: ["plugin:rxjs/recommended"],
extends: ["plugin:@smarttools/rxjs/recommended"],
};

```
Expand Down

0 comments on commit 3849043

Please sign in to comment.