aboutsummaryrefslogtreecommitdiff
path: root/apps/extension/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'apps/extension/README.md')
-rw-r--r--apps/extension/README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/apps/extension/README.md b/apps/extension/README.md
index 7619225f..bb156850 100644
--- a/apps/extension/README.md
+++ b/apps/extension/README.md
@@ -17,15 +17,14 @@ If you are developing a production application, we recommend updating the config
export default {
// other rules...
parserOptions: {
- ecmaVersion: 'latest',
- sourceType: 'module',
- project: ['./tsconfig.json', './tsconfig.node.json'],
+ ecmaVersion: "latest",
+ sourceType: "module",
+ project: ["./tsconfig.json", "./tsconfig.node.json"],
tsconfigRootDir: __dirname,
},
-}
+};
```
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
- \ No newline at end of file