commit | 4dc470bc32c8065f514ce4a9e8f83a4f2c26c039 | [log] [tgz] |
---|---|---|
author | Nikolay Vitkov <[email protected]> | Thu Feb 20 12:44:32 2025 |
committer | Devtools-frontend LUCI CQ <devtools-frontend-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Feb 20 13:59:37 2025 |
tree | 27e62795ab194dd5a0f5d52185db690f455df4da | |
parent | d593a7bbb38e907d55f285efa6d0be74b42f8458 [diff] [blame] |
[eslint] Fix when running with `.` Fixes some issue around what gets ignored when linting. Found while running `npm run lint -- .` Bug: 397260638 Change-Id: I858b9078611a3cb9f31c60ff3e18d99b56563d73 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6280813 Reviewed-by: Philip Pfaffe <[email protected]> Commit-Queue: Nikolay Vitkov <[email protected]> Reviewed-by: Mathias Bynens <[email protected]>
diff --git a/eslint.config.mjs b/eslint.config.mjs index 62b0fc9..8131a30 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs
@@ -33,6 +33,11 @@ 'build/', 'buildtools/', + // Don't include the common build directory + 'out/', + // Don't include third party code + 'third_party/', + 'front_end/diff/diff_match_patch.jD', 'front_end/models/javascript_metadata/NativeFunctions.js', // All of these scripts are auto-generated so don't lint them.