Skip to content

Commit b84941e

Browse files
babu-chcamc314
andauthored
feat(linter/vue): implement no-expose-after-await rule (#22675)
related #11440 upstream: https://eslint.vuejs.org/rules/no-expose-after-await.html AI disclosure: implemented with Claude Code, reviewed manually. --------- Co-authored-by: Cameron Clark <cameron.clark@hey.com>
1 parent 98b98c1 commit b84941e

8 files changed

Lines changed: 613 additions & 1 deletion

File tree

apps/oxlint/src-js/package/config.generated.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1303,6 +1303,7 @@ export interface DummyRuleMap {
13031303
"vue/no-deprecated-props-default-this"?: DummyRule;
13041304
"vue/no-deprecated-vue-config-keycodes"?: DummyRule;
13051305
"vue/no-export-in-script-setup"?: DummyRule;
1306+
"vue/no-expose-after-await"?: DummyRule;
13061307
"vue/no-import-compiler-macros"?: DummyRule;
13071308
"vue/no-lifecycle-after-await"?: DummyRule;
13081309
"vue/no-multiple-slot-args"?: DummyRule;

crates/oxc_linter/src/generated/rule_runner_impls.rs

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_linter/src/generated/rules_enum.rs

Lines changed: 29 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/oxc_linter/src/rules.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -842,6 +842,7 @@ pub(crate) mod vue {
842842
pub mod no_deprecated_props_default_this;
843843
pub mod no_deprecated_vue_config_keycodes;
844844
pub mod no_export_in_script_setup;
845+
pub mod no_expose_after_await;
845846
pub mod no_import_compiler_macros;
846847
pub mod no_lifecycle_after_await;
847848
pub mod no_multiple_slot_args;

0 commit comments

Comments
 (0)