We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe9614 commit 5348757Copy full SHA for 5348757
README.md
@@ -41,6 +41,23 @@ const sqlitePlugin = createSqlitePlugin({
41
export default [sqlitePlugin.configs.recommended];
42
```
43
44
+## Editor support
45
+
46
+### VSCode
47
48
+By default the ESLint extension for VSCode uses the Node.js version
49
+included with VSCode, if that version isn't the same major version
50
+as the one used by your project then you need to configure the extension
51
+to use the version of Node.js that your project uses.
52
53
+You can do that by adding the following to your `.vscode/settings.json` file:
54
55
+```json
56
+{
57
+ "eslint.runtime": "node"
58
+}
59
+```
60
61
## Rules
62
63
### valid-query
0 commit comments