mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
chore(linter): move adjacent-overload-signatures to style
Per the typescript-eslint v6 change
This commit is contained in:
parent
f5c9908550
commit
f23a0347fd
1 changed files with 3 additions and 3 deletions
|
|
@ -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 {}
|
||||
}"#,
|
||||
|
|
|
|||
Loading…
Reference in a new issue