Skip to content

Commit

Permalink
chore: Update README and ESLint config
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Apr 24, 2024
1 parent b865844 commit c54d81d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
15 changes: 15 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
}
}
];

0 comments on commit c54d81d

Please sign in to comment.