We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41a099 commit 4133d41Copy full SHA for 4133d41
1 file changed
src/javascript.cts
@@ -6,6 +6,7 @@ import * as eslintBabelParser from "@babel/eslint-parser"
6
import * as nodePlugin from "eslint-plugin-node"
7
import * as importPlugin from "eslint-plugin-import"
8
import type { TransformOptions } from "@babel/core"
9
+import globals from "globals"
10
11
import js from "@eslint/js"
12
@@ -29,7 +30,9 @@ export const jsConfig: Linter.Config[] = [
29
30
sourceType: "module" as const,
31
},
32
globals: {
- atom: "readonly",
33
+ ...globals.node,
34
+ ...globals.browser,
35
+ ...globals.atomtest,
36
37
38
plugins: {
0 commit comments