diff options
| author | Jacob Walls <jacobtylerwalls@gmail.com> | 2025-09-23 22:46:38 -0400 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-09-30 08:45:39 +0200 |
| commit | d29852ae725f673843c46085bb51cbc740d374d7 (patch) | |
| tree | 12a1e320e079a93a7aa79c344d5cdd39d6f8a3f0 /eslint.config.mjs | |
| parent | 906a51e125c3007f86d42b81072a1dad7149af05 (diff) | |
Fixed #36619 -- Vendored eslint configuration dependencies.
This allows the eslint pre-commit hook to run without depending
on a prior installation of node modules.
Follow-up to 6345a6ff63a8b8af86ee9a025e29984a410c9764.
Diffstat (limited to 'eslint.config.mjs')
| -rw-r--r-- | eslint.config.mjs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eslint.config.mjs b/eslint.config.mjs index 306adb3aa5..c3fd4f33a5 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,8 +1,8 @@ -import globals from "globals"; -import js from "@eslint/js"; +import globals from "./globals.js"; +import recommended from "./eslint-recommended.js"; export default [ - js.configs.recommended, + recommended, { files: ["**/*.js"], rules: { |
