diff --git a/README.md b/README.md index 4d9a00b..0576a69 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # ESLint Rewrite Monorepo for the rewrite of ESLint. + + +## Packages + +This repository is the home of the following packages: + +* [`@eslint/object-schema`](tree/main/packages/object-schema) +* [`@eslint/config-array`](tree/main/packages/config-array) diff --git a/eslint.config.js b/eslint.config.js index a6a2779..cd42600 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -2,4 +2,19 @@ import js from "@eslint/js"; export default [ js.configs.recommended, + { + files: ["**/*.test.js"], + languageOptions: { + globals: { + describe: "readonly", + xdescribe: "readonly", + it: "readonly", + xit: "readonly", + beforeEach: "readonly", + afterEach: "readonly", + before: "readonly", + after: "readonly", + } + } + } ];