chore(linter): move adjacent-overload-signatures to style

Per the typescript-eslint v6 change
This commit is contained in:
Boshen 2023-07-28 14:03:53 +08:00
parent f5c9908550
commit f23a0347fd

View file

@ -71,7 +71,7 @@ declare_oxc_lint!(
/// export function foo(sn: string | number): void;
/// ```
AdjacentOverloadSignatures,
correctness
style
);
#[derive(PartialEq, Debug)]
@ -501,9 +501,9 @@ fn test() {
r#"class Test {
#private(): void;
#private(arg: number): void {}
bar() {}
'#private'(): void;
'#private'(arg: number): void {}
}"#,