Skip to content

Comments

refactor(linter/plugins): allow nullish values as message or messageId#14422

Merged
graphite-app[bot] merged 1 commit intomainfrom
10-07-refactor_linter_plugins_allow_nullish_values_as_message_or_messageid_
Oct 7, 2025
Merged

refactor(linter/plugins): allow nullish values as message or messageId#14422
graphite-app[bot] merged 1 commit intomainfrom
10-07-refactor_linter_plugins_allow_nullish_values_as_message_or_messageid_

Conversation

@overlookmotel
Copy link
Member

@overlookmotel overlookmotel commented Oct 7, 2025

It makes the types a bit shit, but so far we accept null or undefined for all properties, and treat them the same as the property being absent. Extend this convention to message and messageId properties.

Also split out getting the message from a diagnostic into a separate function, to make this pattern simpler via early return.

Copy link
Member Author

overlookmotel commented Oct 7, 2025


How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • 0-merge - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This stack of pull requests is managed by Graphite. Learn more about stacking.

@overlookmotel overlookmotel marked this pull request as ready for review October 7, 2025 18:38
@overlookmotel overlookmotel requested a review from camc314 as a code owner October 7, 2025 18:38
@overlookmotel overlookmotel assigned camc314 and overlookmotel and unassigned camc314 Oct 7, 2025
@graphite-app graphite-app bot added the 0-merge Merge with Graphite Merge Queue label Oct 7, 2025
@overlookmotel overlookmotel force-pushed the 10-07-refactor_remove_default_value_from_context_constructor branch from 0deaf7a to ab36b38 Compare October 7, 2025 19:19
@overlookmotel overlookmotel force-pushed the 10-07-refactor_linter_plugins_allow_nullish_values_as_message_or_messageid_ branch from d185d4e to 7d19e57 Compare October 7, 2025 19:19
@graphite-app
Copy link
Contributor

graphite-app bot commented Oct 7, 2025

Merge activity

…geId` (#14422)

It makes the types a bit shit, but so far we accept `null` or `undefined` for all properties, and treat them the same as the property being absent. Extend this convention to `message` and `messageId` properties.

Also split out getting the message from a diagnostic into a separate function, to make this pattern simpler via early return.
@graphite-app graphite-app bot force-pushed the 10-07-refactor_remove_default_value_from_context_constructor branch from ab36b38 to dc30938 Compare October 7, 2025 19:26
@graphite-app graphite-app bot force-pushed the 10-07-refactor_linter_plugins_allow_nullish_values_as_message_or_messageid_ branch from 7d19e57 to 5e99ed3 Compare October 7, 2025 19:26
Base automatically changed from 10-07-refactor_remove_default_value_from_context_constructor to main October 7, 2025 19:30
@graphite-app graphite-app bot removed the 0-merge Merge with Graphite Merge Queue label Oct 7, 2025
@graphite-app
Copy link
Contributor

graphite-app bot commented Oct 7, 2025

Merge activity

@graphite-app graphite-app bot merged commit 5e99ed3 into main Oct 7, 2025
19 checks passed
@graphite-app graphite-app bot deleted the 10-07-refactor_linter_plugins_allow_nullish_values_as_message_or_messageid_ branch October 7, 2025 19:32
This was referenced Oct 8, 2025
camc314 added a commit that referenced this pull request Oct 8, 2025
## [1.21.0] - 2025-10-08

### 🚀 Features

- 576be20 linter/plugins: Support selectors DSL (#14435) (overlookmotel)
- b2de44f linter/plugins: Support interpolation in normal diagnostic
`message` (#14419) (overlookmotel)
- 382c5be linter/plugins: Support placeholders in messageIds (#14416)
(camc314)
- 529e88e linter/plugins: Support `messageId`s (#14415) (camc314)
- 83e7824 linter: Add `vue/require-default-export` rule (#14351) (Sysix)
- ff98536 linter: Add `vue/no-import-compiler-macros` rule (#14335)
(Sysix)
- 0ec0847 ci: Run napi tests on windows (#14383) (camc314)

### 🐛 Bug Fixes

- 11e0440 linter/jsx-handler-name: Improve handler name position in
error messages (#14174) (Takuji Shimokawa)
- 493082c language_server: Use the first Span of the message as the
primary Diagnostic range (#14057) (Sysix)
- 88ec1bd linter/plugins: Fix error messages (#14423) (overlookmotel)
- 18616c2 oxlint: Ignore fixtures dir for vitest (#14414) (camc314)
- ec02fe8 oxlint: Normalize path separators in snapshot tests (#14406)
(camc314)
- 6e8d2f6 language_server: Ignore JS plugins (#14379) (overlookmotel)
- 96663fb linter/plugins: Do not call `before` hook if empty visitor
(#14401) (overlookmotel)
- 52f04bd linter: Use `pathToFileURL` for importing plugins to ensure
correct URL format (#14394) (camc314)
- 1ea0d46 oxlint: Resolve tsdown deprecation warning (#14389) (camc314)
- bb679b5 linter: Promise/prefer-await-to-then strict option not reading
from config (#14382) (camc314)

### 🚜 Refactor

- 3374b8e linter/language_server: Move all lsp relevant code to
`oxc_language_server` crate (#14430) (Sysix)
- d24b74e linter/language_server: `oxc_linter::TsgoLinter::run_source`
returns `Message` (#14429) (Sysix)
- e5b7fb2 linter/language_server: `oxc_linter::Runtime::run_source`
returns `Message` (#14428) (Sysix)
- 3b26bf3 linter/plugins: Split adding visit function to compiler
visitor into multiple functions (#14433) (overlookmotel)
- af3a75e linter/plugins: Track ancestors while walking AST (#14432)
(overlookmotel)
- f279f0b linter/plugins: Do not lazy-load visitor keys (#14431)
(overlookmotel)
- 5e99ed3 linter/plugins: Allow nullish values as `message` or
`messageId` (#14422) (overlookmotel)
- dc30938 linter/plugins: Remove default value from `Context`
constructor (#14421) (overlookmotel)
- 28cfae0 oxlint: Use `vitest`s built in file snapshot comparison
(#14392) (camc314)
- 06b0e9f linter/plugins: Convert generated files to TS (#14385)
(overlookmotel)
- 52f35c6 napi/parser, linter/plugins: Rename `types.js` to
`type_ids.js` (#14384) (overlookmotel)

### ⚡ Performance

- 26435a1 linter/plugins: Small perf optimizations (#14420)
(overlookmotel)
- d8a8be1 linter/plugins: Avoid private methods (#14418) (overlookmotel)

### 🧪 Testing

- d8da4a4 linter/plugins: Clarify tests for message placeholders
(#14417) (overlookmotel)

Co-authored-by: camc314 <18101008+camc314@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-cli Area - CLI A-linter Area - Linter C-cleanup Category - technical debt or refactoring. Solution not expected to change behavior

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants