repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/reference_type.rs
crates/rome_js_formatter/src/ts/types/reference_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsReferenceType, TsReferenceTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsReferenceType; impl FormatNodeRule<TsReferenceType> for FormatTsReferenceType { fn fmt_fields...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/constructor_type.rs
crates/rome_js_formatter/src/ts/types/constructor_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use crate::ts::types::function_type::function_like_type_needs_parentheses; use rome_formatter::write; use rome_js_syntax::TsConstructorTypeFields; use rome_js_syntax::{JsSyntaxNode, TsConstructorType}; #[derive(Debug, Clone, Default)] pub struct FormatT...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/number_literal_type.rs
crates/rome_js_formatter/src/ts/types/number_literal_type.rs
use crate::prelude::*; use rome_formatter::token::number::format_number_token; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsNumberLiteralType, TsNumberLiteralTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNumberLiteralType; impl FormatNod...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/string_type.rs
crates/rome_js_formatter/src/ts/types/string_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsStringType, TsStringTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsStringType; impl FormatNodeRule<TsStringType> for FormatTsStringType { fn fmt_fields(&self, node: &...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/symbol_type.rs
crates/rome_js_formatter/src/ts/types/symbol_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsSymbolType, TsSymbolTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsSymbolType; impl FormatNodeRule<TsSymbolType> for FormatTsSymbolType { fn fmt_fields(&self, node: &...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/any_type.rs
crates/rome_js_formatter/src/ts/types/any_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsAnyType, TsAnyTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsAnyType; impl FormatNodeRule<TsAnyType> for FormatTsAnyType { fn fmt_fields(&self, node: &TsAnyType, f: &...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/number_type.rs
crates/rome_js_formatter/src/ts/types/number_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsNumberType, TsNumberTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNumberType; impl FormatNodeRule<TsNumberType> for FormatTsNumberType { fn fmt_fields(&self, node: &...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/infer_type.rs
crates/rome_js_formatter/src/ts/types/infer_type.rs
use crate::prelude::*; use crate::parentheses::{operator_type_or_higher_needs_parens, NeedsParentheses}; use rome_formatter::write; use rome_js_syntax::{JsSyntaxKind, JsSyntaxNode, TsInferType, TsInferTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsInferType; impl FormatNodeRule<TsInferType> for For...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/undefined_type.rs
crates/rome_js_formatter/src/ts/types/undefined_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsUndefinedType, TsUndefinedTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsUndefinedType; impl FormatNodeRule<TsUndefinedType> for FormatTsUndefinedType { fn fmt_fields...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/mapped_type.rs
crates/rome_js_formatter/src/ts/types/mapped_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use crate::utils::FormatOptionalSemicolon; use rome_formatter::trivia::FormatLeadingComments; use rome_formatter::{format_args, write}; use rome_js_syntax::{JsSyntaxNode, TsMappedType, TsMappedTypeFields}; #[derive(Debug, Clone, Default)] pub struct For...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/function_type.rs
crates/rome_js_formatter/src/ts/types/function_type.rs
use crate::prelude::*; use crate::js::declarations::function_declaration::should_group_function_parameters; use crate::parentheses::{ is_check_type, is_in_many_type_union_or_intersection_list, is_includes_inferred_return_types_with_extends_constraints, operator_type_or_higher_needs_parens, NeedsParentheses...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/void_type.rs
crates/rome_js_formatter/src/ts/types/void_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsVoidType, TsVoidTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsVoidType; impl FormatNodeRule<TsVoidType> for FormatTsVoidType { fn fmt_fields(&self, node: &TsVoidType...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/indexed_access_type.rs
crates/rome_js_formatter/src/ts/types/indexed_access_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::TsIndexedAccessTypeFields; use rome_js_syntax::{JsSyntaxNode, TsIndexedAccessType}; #[derive(Debug, Clone, Default)] pub struct FormatTsIndexedAccessType; impl FormatNodeRule<TsIndexedAccessType> for Forma...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/boolean_literal_type.rs
crates/rome_js_formatter/src/ts/types/boolean_literal_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsBooleanLiteralType, TsBooleanLiteralTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsBooleanLiteralType; impl FormatNodeRule<TsBooleanLiteralType> for FormatTsBooleanLitera...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/bigint_literal_type.rs
crates/rome_js_formatter/src/ts/types/bigint_literal_type.rs
use std::borrow::Cow; use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::token::string::ToAsciiLowercaseCow; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsBigintLiteralType, TsBigintLiteralTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsBigintLiter...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/this_type.rs
crates/rome_js_formatter/src/ts/types/this_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsThisType, TsThisTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsThisType; impl FormatNodeRule<TsThisType> for FormatTsThisType { fn fmt_fields(&self, node: &TsThisType...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/mod.rs
crates/rome_js_formatter/src/ts/types/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod any_type; pub(crate) mod array_type; pub(crate) mod asserts_return_type; pub(crate) mod bigint_literal_type; pub(crate) mod bigint_type; pub(crate) mod boolean_literal_type; pub(crate) mod boole...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/conditional_type.rs
crates/rome_js_formatter/src/ts/types/conditional_type.rs
use crate::prelude::*; use crate::utils::AnyJsConditional; use crate::parentheses::{ is_check_type, is_in_many_type_union_or_intersection_list, operator_type_or_higher_needs_parens, NeedsParentheses, }; use rome_js_syntax::{JsSyntaxKind, JsSyntaxNode, TsConditionalType}; use rome_rowan::AstNode; #[derive(Debu...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/parenthesized_type.rs
crates/rome_js_formatter/src/ts/types/parenthesized_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::TsParenthesizedTypeFields; use rome_js_syntax::{JsSyntaxNode, TsParenthesizedType}; #[derive(Debug, Clone, Default)] pub struct FormatTsParenthesizedType; impl FormatNodeRule<TsParenthesizedType> for Forma...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/boolean_type.rs
crates/rome_js_formatter/src/ts/types/boolean_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsBooleanType, TsBooleanTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsBooleanType; impl FormatNodeRule<TsBooleanType> for FormatTsBooleanType { fn fmt_fields(&self, no...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/predicate_return_type.rs
crates/rome_js_formatter/src/ts/types/predicate_return_type.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsPredicateReturnType; use rome_js_syntax::TsPredicateReturnTypeFields; #[derive(Debug, Clone, Default)] pub struct FormatTsPredicateReturnType; impl FormatNodeRule<TsPredicateReturnType> for FormatTsPredicateReturnType { fn fmt_fields(&self, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/object_type.rs
crates/rome_js_formatter/src/ts/types/object_type.rs
use crate::parentheses::NeedsParentheses; use crate::prelude::*; use crate::utils::JsObjectLike; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsObjectType}; #[derive(Debug, Clone, Default)] pub struct FormatTsObjectType; impl FormatNodeRule<TsObjectType> for FormatTsObjectType { fn fmt_fields(&se...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/array_type.rs
crates/rome_js_formatter/src/ts/types/array_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsArrayType, TsArrayTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsArrayType; impl FormatNodeRule<TsArrayType> for FormatTsArrayType { fn fmt_fields(&self, node: &TsArr...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/non_primitive_type.rs
crates/rome_js_formatter/src/ts/types/non_primitive_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsNonPrimitiveType, TsNonPrimitiveTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNonPrimitiveType; impl FormatNodeRule<TsNonPrimitiveType> for FormatTsNonPrimitiveType { ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/unknown_type.rs
crates/rome_js_formatter/src/ts/types/unknown_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsUnknownType, TsUnknownTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsUnknownType; impl FormatNodeRule<TsUnknownType> for FormatTsUnknownType { fn fmt_fields(&self, no...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/never_type.rs
crates/rome_js_formatter/src/ts/types/never_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsNeverType, TsNeverTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNeverType; impl FormatNodeRule<TsNeverType> for FormatTsNeverType { fn fmt_fields(&self, node: &TsNev...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/types/bigint_type.rs
crates/rome_js_formatter/src/ts/types/bigint_type.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxNode, TsBigintType, TsBigintTypeFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsBigintType; impl FormatNodeRule<TsBigintType> for FormatTsBigintType { fn fmt_fields(&self, node: &...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/type_parameter.rs
crates/rome_js_formatter/src/ts/bindings/type_parameter.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsTypeParameter, TsTypeParameterFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsTypeParameter; impl FormatNodeRule<TsTypeParameter> for FormatTsTypeParameter { fn fmt_fields(&self, node: &TsTypeParameter, f: &mut JsFormatter) -> ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/property_parameter.rs
crates/rome_js_formatter/src/ts/bindings/property_parameter.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsPropertyParameter, TsPropertyParameterFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsPropertyParameter; impl FormatNodeRule<TsPropertyParameter> for FormatTsPropertyParameter { fn fmt_fields(&self, node: &TsPropertyParameter, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/index_signature_parameter.rs
crates/rome_js_formatter/src/ts/bindings/index_signature_parameter.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsIndexSignatureParameter, TsIndexSignatureParameterFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsIndexSignatureParameter; impl FormatNodeRule<TsIndexSignatureParameter> for FormatTsIndexSignatureParameter { fn fmt_fields( ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/this_parameter.rs
crates/rome_js_formatter/src/ts/bindings/this_parameter.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsThisParameter, TsThisParameterFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsThisParameter; impl FormatNodeRule<TsThisParameter> for FormatTsThisParameter { fn fmt_fields(&self, node: &TsThisParameter, f: &mut JsFormatter) -> ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/type_parameters.rs
crates/rome_js_formatter/src/ts/bindings/type_parameters.rs
use crate::prelude::*; use rome_formatter::FormatError::SyntaxError; use rome_formatter::{format_args, write, FormatRuleWithOptions, GroupId}; use rome_js_syntax::{TsTypeParameters, TsTypeParametersFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsTypeParameters { group_id: Option<GroupId>, } impl Form...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/mod.rs
crates/rome_js_formatter/src/ts/bindings/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod identifier_binding; pub(crate) mod index_signature_parameter; pub(crate) mod property_parameter; pub(crate) mod this_parameter; pub(crate) mod type_parameter; pub(crate) mod type_parameters;
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/bindings/identifier_binding.rs
crates/rome_js_formatter/src/ts/bindings/identifier_binding.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsIdentifierBinding, TsIdentifierBindingFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsIdentifierBinding; impl FormatNodeRule<TsIdentifierBinding> for FormatTsIdentifierBinding { fn fmt_fields(&self, node: &TsIdentifierBinding, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/type_parameter_name.rs
crates/rome_js_formatter/src/ts/auxiliary/type_parameter_name.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsTypeParameterName, TsTypeParameterNameFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsTypeParameterName; impl FormatNodeRule<TsTypeParameterName> for FormatTsTypeParameterName { fn fmt_fields(&self, node: &TsTypeParameterName, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/qualified_module_name.rs
crates/rome_js_formatter/src/ts/auxiliary/qualified_module_name.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsQualifiedModuleName; use rome_js_syntax::TsQualifiedModuleNameFields; #[derive(Debug, Clone, Default)] pub struct FormatTsQualifiedModuleName; impl FormatNodeRule<TsQualifiedModuleName> for FormatTsQualifiedModuleName { fn fmt_fields(&self, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/mapped_type_optional_modifier_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/mapped_type_optional_modifier_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsMappedTypeOptionalModifierClause; use rome_js_syntax::TsMappedTypeOptionalModifierClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsMappedTypeOptionalModifierClause; impl FormatNodeRule<TsMappedTypeOptionalModifierClause> for...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/optional_property_annotation.rs
crates/rome_js_formatter/src/ts/auxiliary/optional_property_annotation.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsOptionalPropertyAnnotation; use rome_js_syntax::TsOptionalPropertyAnnotationFields; #[derive(Debug, Clone, Default)] pub struct FormatTsOptionalPropertyAnnotation; impl FormatNodeRule<TsOptionalPropertyAnnotation> for FormatTsOptionalPropertyAnn...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/override_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/override_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsOverrideModifier; use rome_js_syntax::TsOverrideModifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsOverrideModifier; impl FormatNodeRule<TsOverrideModifier> for FormatTsOverrideModifier { fn fmt_fields(&self, node: &TsOverri...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/index_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/index_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use rome_formatter::write; use rome_js_syntax::{TsIndexSignatureTypeMember, TsIndexSignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsIndexSignatureTypeMember; impl FormatNodeRule<TsIndexSignatureTypeMember> for FormatTs...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/const_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/const_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsConstModifier, TsConstModifierFields}; #[derive(Debug, Clone, Default)] pub(crate) struct FormatTsConstModifier; impl FormatNodeRule<TsConstModifier> for FormatTsConstModifier { fn fmt_fields(&self, node: &TsConstModifier, f: &mut JsFormatte...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/enum_member.rs
crates/rome_js_formatter/src/ts/auxiliary/enum_member.rs
use crate::prelude::*; use crate::utils::FormatInitializerClause; use rome_formatter::write; use rome_js_syntax::{TsEnumMember, TsEnumMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsEnumMember; impl FormatNodeRule<TsEnumMember> for FormatTsEnumMember { fn fmt_fields(&self, node: &TsEnumMember,...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/mapped_type_as_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/mapped_type_as_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsMappedTypeAsClause, TsMappedTypeAsClauseFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsMappedTypeAsClause; impl FormatNodeRule<TsMappedTypeAsClause> for FormatTsMappedTypeAsClause { fn fmt_fields(&self, node: &TsMappedTypeAsCl...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/return_type_annotation.rs
crates/rome_js_formatter/src/ts/auxiliary/return_type_annotation.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsReturnTypeAnnotation; use rome_js_syntax::TsReturnTypeAnnotationFields; #[derive(Debug, Clone, Default)] pub struct FormatTsReturnTypeAnnotation; impl FormatNodeRule<TsReturnTypeAnnotation> for FormatTsReturnTypeAnnotation { fn fmt_fields(&s...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/accessibility_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/accessibility_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsAccessibilityModifier; use rome_js_syntax::TsAccessibilityModifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsAccessibilityModifier; impl FormatNodeRule<TsAccessibilityModifier> for FormatTsAccessibilityModifier { fn fmt_fiel...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/module_block.rs
crates/rome_js_formatter/src/ts/auxiliary/module_block.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsModuleBlock; use rome_js_syntax::TsModuleBlockFields; #[derive(Debug, Clone, Default)] pub struct FormatTsModuleBlock; impl FormatNodeRule<TsModuleBlock> for FormatTsModuleBlock { fn fmt_fields(&self, node: &TsModuleBlock, f: &mut JsFormatte...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/default_type_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/default_type_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsDefaultTypeClause, TsDefaultTypeClauseFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsDefaultTypeClause; impl FormatNodeRule<TsDefaultTypeClause> for FormatTsDefaultTypeClause { fn fmt_fields(&self, node: &TsDefaultTypeClause, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/out_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/out_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsOutModifier, TsOutModifierFields}; #[derive(Debug, Clone, Default)] pub(crate) struct FormatTsOutModifier; impl FormatNodeRule<TsOutModifier> for FormatTsOutModifier { fn fmt_fields(&self, node: &TsOutModifier, f: &mut JsFormatter) -> Format...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/optional_tuple_type_element.rs
crates/rome_js_formatter/src/ts/auxiliary/optional_tuple_type_element.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsOptionalTupleTypeElement, TsOptionalTupleTypeElementFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsOptionalTupleTypeElement; impl FormatNodeRule<TsOptionalTupleTypeElement> for FormatTsOptionalTupleTypeElement { fn fmt_fields(...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/qualified_name.rs
crates/rome_js_formatter/src/ts/auxiliary/qualified_name.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsQualifiedName; use rome_js_syntax::TsQualifiedNameFields; #[derive(Debug, Clone, Default)] pub struct FormatTsQualifiedName; impl FormatNodeRule<TsQualifiedName> for FormatTsQualifiedName { fn fmt_fields(&self, node: &TsQualifiedName, f: &mu...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/template_element.rs
crates/rome_js_formatter/src/ts/auxiliary/template_element.rs
use crate::prelude::*; use rome_formatter::FormatRuleWithOptions; use crate::js::auxiliary::template_element::{ AnyTemplateElement, FormatTemplateElement, TemplateElementOptions, }; use rome_js_syntax::TsTemplateElement; #[derive(Debug, Clone, Default)] pub struct FormatTsTemplateElement { options: TemplateEl...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/property_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/property_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use rome_formatter::write; use rome_js_syntax::{TsPropertySignatureTypeMember, TsPropertySignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsPropertySignatureTypeMember; impl FormatNodeRule<TsPropertySignatureTypeMember> ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/definite_property_annotation.rs
crates/rome_js_formatter/src/ts/auxiliary/definite_property_annotation.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsDefinitePropertyAnnotation; use rome_js_syntax::TsDefinitePropertyAnnotationFields; #[derive(Debug, Clone, Default)] pub struct FormatTsDefinitePropertyAnnotation; impl FormatNodeRule<TsDefinitePropertyAnnotation> for FormatTsDefinitePropertyAnn...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/construct_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/construct_signature_type_member.rs
use crate::prelude::*; use rome_formatter::{format_args, write}; use crate::utils::FormatTypeMemberSeparator; use rome_js_syntax::{TsConstructSignatureTypeMember, TsConstructSignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsConstructSignatureTypeMember; impl FormatNodeRule<TsConstructS...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/mapped_type_readonly_modifier_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/mapped_type_readonly_modifier_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsMappedTypeReadonlyModifierClause; use rome_js_syntax::TsMappedTypeReadonlyModifierClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsMappedTypeReadonlyModifierClause; impl FormatNodeRule<TsMappedTypeReadonlyModifierClause> for...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/definite_variable_annotation.rs
crates/rome_js_formatter/src/ts/auxiliary/definite_variable_annotation.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsDefiniteVariableAnnotation; use rome_js_syntax::TsDefiniteVariableAnnotationFields; #[derive(Debug, Clone, Default)] pub struct FormatTsDefiniteVariableAnnotation; impl FormatNodeRule<TsDefiniteVariableAnnotation> for FormatTsDefiniteVariableAnn...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/type_annotation.rs
crates/rome_js_formatter/src/ts/auxiliary/type_annotation.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsTypeAnnotation, TsTypeAnnotationFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsTypeAnnotation; impl FormatNodeRule<TsTypeAnnotation> for FormatTsTypeAnnotation { fn fmt_fields(&self, node: &TsTypeAnnotation, f: &mut JsFormatte...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/mod.rs
crates/rome_js_formatter/src/ts/auxiliary/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod abstract_modifier; pub(crate) mod accessibility_modifier; pub(crate) mod asserts_condition; pub(crate) mod call_signature_type_member; pub(crate) mod const_modifier; pub(crate) mod construct_sig...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/named_tuple_type_element.rs
crates/rome_js_formatter/src/ts/auxiliary/named_tuple_type_element.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsNamedTupleTypeElement, TsNamedTupleTypeElementFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNamedTupleTypeElement; impl FormatNodeRule<TsNamedTupleTypeElement> for FormatTsNamedTupleTypeElement { fn fmt_fields(&self, node: &T...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/getter_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/getter_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use rome_formatter::write; use rome_js_syntax::{TsGetterSignatureTypeMember, TsGetterSignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsGetterSignatureTypeMember; impl FormatNodeRule<TsGetterSignatureTypeMember> for Form...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/abstract_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/abstract_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsAbstractModifier; use rome_js_syntax::TsAbstractModifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsAbstractModifier; impl FormatNodeRule<TsAbstractModifier> for FormatTsAbstractModifier { fn fmt_fields(&self, node: &TsAbstra...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/template_chunk_element.rs
crates/rome_js_formatter/src/ts/auxiliary/template_chunk_element.rs
use crate::prelude::*; use crate::js::auxiliary::template_chunk_element::AnyTemplateChunkElement; use rome_js_syntax::TsTemplateChunkElement; #[derive(Debug, Clone, Default)] pub struct FormatTsTemplateChunkElement; impl FormatNodeRule<TsTemplateChunkElement> for FormatTsTemplateChunkElement { fn fmt_fields( ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/type_constraint_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/type_constraint_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsTypeConstraintClause, TsTypeConstraintClauseFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsTypeConstraintClause; impl FormatNodeRule<TsTypeConstraintClause> for FormatTsTypeConstraintClause { fn fmt_fields(&self, node: &TsType...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/readonly_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/readonly_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsReadonlyModifier; use rome_js_syntax::TsReadonlyModifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsReadonlyModifier; impl FormatNodeRule<TsReadonlyModifier> for FormatTsReadonlyModifier { fn fmt_fields(&self, node: &TsReadon...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/declare_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/declare_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsDeclareModifier; use rome_js_syntax::TsDeclareModifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsDeclareModifier; impl FormatNodeRule<TsDeclareModifier> for FormatTsDeclareModifier { fn fmt_fields(&self, node: &TsDeclareModi...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/asserts_condition.rs
crates/rome_js_formatter/src/ts/auxiliary/asserts_condition.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsAssertsCondition; use rome_js_syntax::TsAssertsConditionFields; #[derive(Debug, Clone, Default)] pub struct FormatTsAssertsCondition; impl FormatNodeRule<TsAssertsCondition> for FormatTsAssertsCondition { fn fmt_fields(&self, node: &TsAssert...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/call_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/call_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use rome_formatter::{format_args, write}; use rome_js_syntax::{TsCallSignatureTypeMember, TsCallSignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsCallSignatureTypeMember; impl FormatNodeRule<TsCallSignatureTypeMember> f...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/method_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/method_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use crate::js::classes::method_class_member::FormatAnyJsMethodMember; use rome_formatter::write; use rome_js_syntax::TsMethodSignatureTypeMember; #[derive(Debug, Clone, Default)] pub struct FormatTsMethodSignatureTypeMember; impl FormatNodeRule<TsMe...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/in_modifier.rs
crates/rome_js_formatter/src/ts/auxiliary/in_modifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsInModifier, TsInModifierFields}; #[derive(Debug, Clone, Default)] pub(crate) struct FormatTsInModifier; impl FormatNodeRule<TsInModifier> for FormatTsInModifier { fn fmt_fields(&self, node: &TsInModifier, f: &mut JsFormatter) -> FormatResult...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/implements_clause.rs
crates/rome_js_formatter/src/ts/auxiliary/implements_clause.rs
use crate::prelude::*; use rome_formatter::{format_args, write}; use rome_js_syntax::TsImplementsClause; use rome_js_syntax::TsImplementsClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsImplementsClause; impl FormatNodeRule<TsImplementsClause> for FormatTsImplementsClause { fn fmt_fields(&self, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/external_module_reference.rs
crates/rome_js_formatter/src/ts/auxiliary/external_module_reference.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsExternalModuleReference; use rome_js_syntax::TsExternalModuleReferenceFields; #[derive(Debug, Clone, Default)] pub struct FormatTsExternalModuleReference; impl FormatNodeRule<TsExternalModuleReference> for FormatTsExternalModuleReference { f...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/empty_external_module_declaration_body.rs
crates/rome_js_formatter/src/ts/auxiliary/empty_external_module_declaration_body.rs
use crate::prelude::*; use crate::utils::FormatOptionalSemicolon; use rome_formatter::write; use rome_js_syntax::TsEmptyExternalModuleDeclarationBody; use rome_js_syntax::TsEmptyExternalModuleDeclarationBodyFields; #[derive(Debug, Clone, Default)] pub struct FormatTsEmptyExternalModuleDeclarationBody; impl FormatNod...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/setter_signature_type_member.rs
crates/rome_js_formatter/src/ts/auxiliary/setter_signature_type_member.rs
use crate::prelude::*; use crate::utils::FormatTypeMemberSeparator; use rome_formatter::write; use rome_js_syntax::{TsSetterSignatureTypeMember, TsSetterSignatureTypeMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsSetterSignatureTypeMember; impl FormatNodeRule<TsSetterSignatureTypeMember> for Form...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/auxiliary/rest_tuple_type_element.rs
crates/rome_js_formatter/src/ts/auxiliary/rest_tuple_type_element.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsRestTupleTypeElement, TsRestTupleTypeElementFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsRestTupleTypeElement; impl FormatNodeRule<TsRestTupleTypeElement> for FormatTsRestTupleTypeElement { fn fmt_fields(&self, node: &TsRest...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/non_null_assertion_expression.rs
crates/rome_js_formatter/src/ts/expressions/non_null_assertion_expression.rs
use crate::prelude::*; use crate::js::expressions::static_member_expression::member_chain_callee_needs_parens; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::{JsSyntaxKind, TsNonNullAssertionExpressionFields}; use rome_js_syntax::{JsSyntaxNode, TsNonNullAssertionExpression}; ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/as_expression.rs
crates/rome_js_formatter/src/ts/expressions/as_expression.rs
use crate::prelude::*; use crate::parentheses::{ is_binary_like_left_or_right, is_callee, is_member_object, NeedsParentheses, }; use crate::ts::expressions::type_assertion_expression::type_cast_like_needs_parens; use rome_formatter::{format_args, write}; use rome_js_syntax::{AnyJsExpression, JsSyntaxKind, JsSyntax...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/satisfies_expression.rs
crates/rome_js_formatter/src/ts/expressions/satisfies_expression.rs
use crate::prelude::*; use crate::parentheses::NeedsParentheses; use crate::ts::expressions::as_expression::TsAsOrSatisfiesExpression; use rome_js_syntax::{JsSyntaxNode, TsSatisfiesExpression}; #[derive(Debug, Clone, Default)] pub struct FormatTsSatisfiesExpression; impl FormatNodeRule<TsSatisfiesExpression> for For...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/instantiation_expression.rs
crates/rome_js_formatter/src/ts/expressions/instantiation_expression.rs
use crate::{ parentheses::{unary_like_expression_needs_parentheses, NeedsParentheses}, prelude::*, }; use rome_formatter::write; use rome_js_syntax::{TsInstantiationExpression, TsInstantiationExpressionFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsInstantiationExpression; impl FormatNodeRule<TsIn...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/type_arguments.rs
crates/rome_js_formatter/src/ts/expressions/type_arguments.rs
use crate::utils::should_hug_type; use crate::{prelude::*, utils::is_object_like_type}; use rome_formatter::FormatError::SyntaxError; use rome_formatter::{format_args, write}; use rome_js_syntax::{ AnyJsExpression, AnyTsType, JsSyntaxKind, JsVariableDeclarator, TsTypeArguments, TsTypeArgumentsFields, }; #[deri...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/mod.rs
crates/rome_js_formatter/src/ts/expressions/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod as_expression; pub(crate) mod instantiation_expression; pub(crate) mod name_with_type_arguments; pub(crate) mod non_null_assertion_expression; pub(crate) mod satisfies_expression; pub(crate) mod...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/name_with_type_arguments.rs
crates/rome_js_formatter/src/ts/expressions/name_with_type_arguments.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsNameWithTypeArguments, TsNameWithTypeArgumentsFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsNameWithTypeArguments; impl FormatNodeRule<TsNameWithTypeArguments> for FormatTsNameWithTypeArguments { fn fmt_fields(&self, node: &T...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/expressions/type_assertion_expression.rs
crates/rome_js_formatter/src/ts/expressions/type_assertion_expression.rs
use crate::prelude::*; use crate::parentheses::{is_callee, is_member_object, is_spread, is_tag, NeedsParentheses}; use rome_formatter::{format_args, write}; use rome_js_syntax::{AnyJsExpression, JsSyntaxNode}; use rome_js_syntax::{JsSyntaxKind, TsTypeAssertionExpression, TsTypeAssertionExpressionFields}; #[derive(Deb...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/export_as_namespace_clause.rs
crates/rome_js_formatter/src/ts/module/export_as_namespace_clause.rs
use crate::prelude::*; use crate::utils::FormatStatementSemicolon; use rome_formatter::write; use rome_js_syntax::TsExportAsNamespaceClause; use rome_js_syntax::TsExportAsNamespaceClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsExportAsNamespaceClause; impl FormatNodeRule<TsExportAsNamespaceClause>...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/import_type.rs
crates/rome_js_formatter/src/ts/module/import_type.rs
use crate::prelude::*; use crate::utils::{FormatLiteralStringToken, StringLiteralParentKind}; use crate::parentheses::NeedsParentheses; use rome_formatter::write; use rome_js_syntax::TsImportTypeFields; use rome_js_syntax::{JsSyntaxNode, TsImportType}; #[derive(Debug, Clone, Default)] pub struct FormatTsImportType; ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/export_assignment_clause.rs
crates/rome_js_formatter/src/ts/module/export_assignment_clause.rs
use crate::prelude::*; use crate::utils::FormatStatementSemicolon; use rome_formatter::write; use rome_js_syntax::TsExportAssignmentClause; use rome_js_syntax::TsExportAssignmentClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsExportAssignmentClause; impl FormatNodeRule<TsExportAssignmentClause> for...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/import_type_qualifier.rs
crates/rome_js_formatter/src/ts/module/import_type_qualifier.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsImportTypeQualifier; use rome_js_syntax::TsImportTypeQualifierFields; #[derive(Debug, Clone, Default)] pub struct FormatTsImportTypeQualifier; impl FormatNodeRule<TsImportTypeQualifier> for FormatTsImportTypeQualifier { fn fmt_fields(&self, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/mod.rs
crates/rome_js_formatter/src/ts/module/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod export_as_namespace_clause; pub(crate) mod export_assignment_clause; pub(crate) mod export_declare_clause; pub(crate) mod import_type; pub(crate) mod import_type_qualifier;
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/module/export_declare_clause.rs
crates/rome_js_formatter/src/ts/module/export_declare_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::TsExportDeclareClause; use rome_js_syntax::TsExportDeclareClauseFields; #[derive(Debug, Clone, Default)] pub struct FormatTsExportDeclareClause; impl FormatNodeRule<TsExportDeclareClause> for FormatTsExportDeclareClause { fn fmt_fields(&self, ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/initialized_property_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/initialized_property_signature_class_member.rs
use crate::js::classes::property_class_member::{ AnyJsPropertyClassMember, FormatClassPropertySemicolon, }; use crate::prelude::*; use crate::utils::AnyJsAssignmentLike; use rome_formatter::write; use rome_js_syntax::TsInitializedPropertySignatureClassMember; #[derive(Debug, Clone, Default)] pub(crate) struct Forma...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/method_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/method_signature_class_member.rs
use crate::prelude::*; use crate::utils::FormatOptionalSemicolon; use crate::js::classes::method_class_member::FormatAnyJsMethodMember; use rome_formatter::write; use rome_js_syntax::TsMethodSignatureClassMember; #[derive(Debug, Clone, Default)] pub struct FormatTsMethodSignatureClassMember; impl FormatNodeRule<TsM...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/index_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/index_signature_class_member.rs
use crate::prelude::*; use crate::utils::FormatOptionalSemicolon; use rome_formatter::write; use rome_js_syntax::TsIndexSignatureClassMember; use rome_js_syntax::TsIndexSignatureClassMemberFields; #[derive(Debug, Clone, Default)] pub struct FormatTsIndexSignatureClassMember; impl FormatNodeRule<TsIndexSignatureClass...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/getter_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/getter_signature_class_member.rs
use crate::prelude::*; use rome_formatter::write; use crate::utils::FormatOptionalSemicolon; use rome_js_syntax::{TsGetterSignatureClassMember, TsGetterSignatureClassMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsGetterSignatureClassMember; impl FormatNodeRule<TsGetterSignatureClassMember> for F...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/mod.rs
crates/rome_js_formatter/src/ts/classes/mod.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. pub(crate) mod constructor_signature_class_member; pub(crate) mod extends_clause; pub(crate) mod getter_signature_class_member; pub(crate) mod index_signature_class_member; pub(crate) mod initialized_property_...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/setter_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/setter_signature_class_member.rs
use crate::prelude::*; use crate::utils::FormatOptionalSemicolon; use rome_formatter::write; use rome_js_syntax::{TsSetterSignatureClassMember, TsSetterSignatureClassMemberFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsSetterSignatureClassMember; impl FormatNodeRule<TsSetterSignatureClassMember> for Fo...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/property_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/property_signature_class_member.rs
use crate::js::classes::property_class_member::{ AnyJsPropertyClassMember, FormatClassPropertySemicolon, }; use crate::prelude::*; use crate::utils::AnyJsAssignmentLike; use rome_formatter::write; use rome_js_syntax::TsPropertySignatureClassMember; #[derive(Debug, Clone, Default)] pub struct FormatTsPropertySignat...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/extends_clause.rs
crates/rome_js_formatter/src/ts/classes/extends_clause.rs
use crate::prelude::*; use rome_formatter::write; use rome_js_syntax::{TsExtendsClause, TsExtendsClauseFields}; #[derive(Debug, Clone, Default)] pub struct FormatTsExtendsClause; impl FormatNodeRule<TsExtendsClause> for FormatTsExtendsClause { fn fmt_fields(&self, node: &TsExtendsClause, f: &mut JsFormatter) -> ...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/classes/constructor_signature_class_member.rs
crates/rome_js_formatter/src/ts/classes/constructor_signature_class_member.rs
use crate::prelude::*; use crate::utils::FormatOptionalSemicolon; use rome_formatter::write; use rome_js_syntax::TsConstructorSignatureClassMember; use rome_js_syntax::TsConstructorSignatureClassMemberFields; #[derive(Debug, Clone, Default)] pub struct FormatTsConstructorSignatureClassMember; impl FormatNodeRule<TsC...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/any/index_signature_modifier.rs
crates/rome_js_formatter/src/ts/any/index_signature_modifier.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. use crate::prelude::*; use rome_js_syntax::AnyTsIndexSignatureModifier; #[derive(Debug, Clone, Default)] pub(crate) struct FormatAnyTsIndexSignatureModifier; impl FormatRule<AnyTsIndexSignatureModifier> for Fo...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/any/external_module_declaration_body.rs
crates/rome_js_formatter/src/ts/any/external_module_declaration_body.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. use crate::prelude::*; use rome_js_syntax::AnyTsExternalModuleDeclarationBody; #[derive(Debug, Clone, Default)] pub(crate) struct FormatAnyTsExternalModuleDeclarationBody; impl FormatRule<AnyTsExternalModuleDe...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false
rome/tools
https://github.com/rome/tools/blob/392d188a49d70e495f13b1bb08cd7d9c43690f9b/crates/rome_js_formatter/src/ts/any/module_name.rs
crates/rome_js_formatter/src/ts/any/module_name.rs
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen formatter' to re-generate the file. use crate::prelude::*; use rome_js_syntax::AnyTsModuleName; #[derive(Debug, Clone, Default)] pub(crate) struct FormatAnyTsModuleName; impl FormatRule<AnyTsModuleName> for FormatAnyTsModuleName { type Conte...
rust
MIT
392d188a49d70e495f13b1bb08cd7d9c43690f9b
2026-01-04T15:38:12.578592Z
false