literalizer¶
literalizer converts JSON data structures to native language literal syntax.
Supported languages¶
See Languages for the full list with per-language options.
Installation¶
Requires Python 3.12+.
pip install literalizer
Usage¶
Use literalizer.literalize_yaml() (or literalizer.literalize_json() for JSON input) to convert data to native language literals:
"""Example of using literalizer."""
from literalizer import literalize_yaml
from literalizer.languages import Go
# YAML comments are preserved using the target language's comment syntax
yaml_config = """\
# Server configuration
host: localhost # default host
port: 8080
# Enable debug mode for development
debug: true
"""
result = literalize_yaml( # returns LiteralizeResult with .code and .preamble
yaml_string=yaml_config,
error_on_coercion=False,
language=Go(
date_format=Go.date_formats.GO,
datetime_format=Go.datetime_formats.GO,
bytes_format=Go.bytes_formats.HEX,
sequence_format=Go.sequence_formats.SLICE,
),
pre_indent_level=0,
include_delimiters=True,
variable_name=None,
new_variable=True,
)
# result.code:
# map[string]any{
# // Server configuration
# "host": "localhost", // default host
# "port": 8080,
# // Enable debug mode for development
# "debug": true,
# }
Use cases¶
Generate test fixtures from JSON samples.
Convert API responses to language-native data structures for documentation.
Create type-safe literal data from JSON config files.
CLI¶
A command-line interface is available at literalizer-cli.
Reference¶
- Multi-language API documentation
- API Reference
CommentConfigDateFormatConfigDatetimeFormatConfigDictFormatConfigLanguageLanguage.bytes_formatsLanguage.comment_configLanguage.comment_formatLanguage.comment_formatsLanguage.compute_body_preambleLanguage.date_formatsLanguage.datetime_formatsLanguage.declaration_styleLanguage.declaration_stylesLanguage.dict_entry_styleLanguage.dict_entry_stylesLanguage.dict_formatLanguage.dict_format_configLanguage.dict_formatsLanguage.element_separatorLanguage.extensionLanguage.false_literalLanguage.float_formatLanguage.float_formatsLanguage.format_bytesLanguage.format_dateLanguage.format_datetimeLanguage.format_floatLanguage.format_integerLanguage.format_ordered_map_entryLanguage.format_sequence_entryLanguage.format_set_entryLanguage.format_stringLanguage.format_variable_assignmentLanguage.format_variable_declarationLanguage.indentLanguage.indent_closing_delimiterLanguage.integer_formatLanguage.integer_formatsLanguage.line_endingLanguage.line_endingsLanguage.null_literalLanguage.numeric_separatorLanguage.numeric_separatorsLanguage.ordered_map_format_configLanguage.pygments_nameLanguage.scalar_body_preambleLanguage.scalar_preambleLanguage.sequence_formatLanguage.sequence_format_configLanguage.sequence_formatsLanguage.sequence_openLanguage.set_formatLanguage.set_format_configLanguage.set_formatsLanguage.skip_null_dict_valuesLanguage.special_float_preambleLanguage.static_body_preambleLanguage.static_preambleLanguage.string_formatLanguage.string_formatsLanguage.supports_collection_commentsLanguage.supports_scalar_before_commentsLanguage.supports_scalar_inline_commentsLanguage.trailing_commaLanguage.trailing_comma_configLanguage.trailing_commasLanguage.true_literalLanguage.type_hint_collection_preamble_linesLanguage.variable_type_hintsLanguage.variable_type_hints_formats
LanguageClsLanguageCls.BytesFormatsLanguageCls.CommentFormatsLanguageCls.DateFormatsLanguageCls.DatetimeFormatsLanguageCls.DeclarationStylesLanguageCls.DictEntryStylesLanguageCls.DictFormatsLanguageCls.EmptyDictKeyLanguageCls.FloatFormatsLanguageCls.IntegerFormatsLanguageCls.LineEndingsLanguageCls.NumericLiteralSuffixesLanguageCls.NumericSeparatorsLanguageCls.SequenceFormatsLanguageCls.SetFormatsLanguageCls.StringFormatsLanguageCls.TrailingCommasLanguageCls.VariableTypeHintsLanguageCls.extensionLanguageCls.pygments_nameLanguageCls.supports_default_dict_key_typeLanguageCls.supports_default_dict_value_typeLanguageCls.supports_default_ordered_map_value_typeLanguageCls.supports_default_sequence_element_typeLanguageCls.supports_default_set_element_typeLanguageCls.supports_non_printable_ascii_dict_keys
LiteralizeResultOrderedMapFormatConfigSequenceFormatConfigSequenceFormatConfig.closeSequenceFormatConfig.empty_sequenceSequenceFormatConfig.format_entrySequenceFormatConfig.preamble_linesSequenceFormatConfig.requires_uniform_record_shapesSequenceFormatConfig.sequence_openSequenceFormatConfig.single_element_trailing_commaSequenceFormatConfig.supports_heterogeneitySequenceFormatConfig.supports_trailing_commaSequenceFormatConfig.typed_opener_fallbackSequenceFormatConfig.uses_typed_literal_for_scalars
SetFormatConfigTrailingCommaConfigfixed_dict_open()fixed_sequence_open()fixed_set_open()literalize_json()literalize_yaml()- Exceptions
- Languages
AdaAda.BytesFormatsAda.CommentFormatsAda.DateFormatsAda.DatetimeFormatsAda.DeclarationStylesAda.DictEntryStylesAda.DictFormatsAda.EmptyDictKeyAda.FloatFormatsAda.IntegerFormatsAda.LineEndingsAda.NumericLiteralSuffixesAda.NumericSeparatorsAda.SequenceFormatsAda.SetFormatsAda.StringFormatsAda.TrailingCommasAda.VariableTypeHintsAda.bytes_formatsAda.comment_formatsAda.date_formatsAda.datetime_formatsAda.declaration_stylesAda.dict_entry_stylesAda.dict_formatsAda.empty_dict_keysAda.extensionAda.float_formatsAda.integer_formatsAda.line_endingsAda.numeric_literal_suffixesAda.numeric_separatorsAda.pygments_nameAda.sequence_formatsAda.set_formatsAda.string_formatsAda.supports_default_dict_key_typeAda.supports_default_dict_value_typeAda.supports_default_ordered_map_value_typeAda.supports_default_sequence_element_typeAda.supports_default_set_element_typeAda.supports_non_printable_ascii_dict_keysAda.trailing_commasAda.variable_type_hints_formats
BashBash.BytesFormatsBash.CommentFormatsBash.DateFormatsBash.DatetimeFormatsBash.DeclarationStylesBash.DictEntryStylesBash.DictFormatsBash.EmptyDictKeyBash.FloatFormatsBash.IntegerFormatsBash.LineEndingsBash.NumericLiteralSuffixesBash.NumericSeparatorsBash.SequenceFormatsBash.SetFormatsBash.StringFormatsBash.TrailingCommasBash.VariableTypeHintsBash.bytes_formatsBash.comment_formatsBash.date_formatsBash.datetime_formatsBash.declaration_stylesBash.dict_entry_stylesBash.dict_formatsBash.empty_dict_keysBash.extensionBash.float_formatsBash.integer_formatsBash.line_endingsBash.numeric_literal_suffixesBash.numeric_separatorsBash.pygments_nameBash.sequence_formatsBash.set_formatsBash.string_formatsBash.supports_default_dict_key_typeBash.supports_default_dict_value_typeBash.supports_default_ordered_map_value_typeBash.supports_default_sequence_element_typeBash.supports_default_set_element_typeBash.supports_non_printable_ascii_dict_keysBash.trailing_commasBash.variable_type_hints_formats
CC.BytesFormatsC.CommentFormatsC.DateFormatsC.DatetimeFormatsC.DeclarationStylesC.DictEntryStylesC.DictFormatsC.EmptyDictKeyC.FloatFormatsC.IntegerFormatsC.LineEndingsC.NumericLiteralSuffixesC.NumericSeparatorsC.SequenceFormatsC.SetFormatsC.StringFormatsC.TrailingCommasC.VariableTypeHintsC.bytes_formatsC.comment_formatsC.date_formatsC.datetime_formatsC.declaration_stylesC.dict_entry_stylesC.dict_formatsC.empty_dict_keysC.extensionC.float_formatsC.integer_formatsC.line_endingsC.numeric_literal_suffixesC.numeric_separatorsC.pygments_nameC.sequence_formatsC.set_formatsC.string_formatsC.supports_default_dict_key_typeC.supports_default_dict_value_typeC.supports_default_ordered_map_value_typeC.supports_default_sequence_element_typeC.supports_default_set_element_typeC.supports_non_printable_ascii_dict_keysC.trailing_commasC.variable_type_hints_formats
CSharpCSharp.BytesFormatsCSharp.CommentFormatsCSharp.DateFormatsCSharp.DatetimeFormatsCSharp.DeclarationStylesCSharp.DictEntryStylesCSharp.DictFormatsCSharp.EmptyDictKeyCSharp.FloatFormatsCSharp.IntegerFormatsCSharp.LineEndingsCSharp.NumericLiteralSuffixesCSharp.NumericSeparatorsCSharp.SequenceFormatsCSharp.SetFormatsCSharp.StringFormatsCSharp.TrailingCommasCSharp.VariableTypeHintsCSharp.bytes_formatsCSharp.comment_formatsCSharp.date_formatsCSharp.datetime_formatsCSharp.declaration_stylesCSharp.dict_entry_stylesCSharp.dict_formatsCSharp.empty_dict_keysCSharp.extensionCSharp.float_formatsCSharp.integer_formatsCSharp.line_endingsCSharp.numeric_literal_suffixesCSharp.numeric_separatorsCSharp.pygments_nameCSharp.sequence_formatsCSharp.set_formatsCSharp.string_formatsCSharp.supports_default_dict_key_typeCSharp.supports_default_dict_value_typeCSharp.supports_default_ordered_map_value_typeCSharp.supports_default_sequence_element_typeCSharp.supports_default_set_element_typeCSharp.supports_non_printable_ascii_dict_keysCSharp.trailing_commasCSharp.variable_type_hints_formats
ClojureClojure.BytesFormatsClojure.CommentFormatsClojure.DateFormatsClojure.DatetimeFormatsClojure.DeclarationStylesClojure.DictEntryStylesClojure.DictFormatsClojure.EmptyDictKeyClojure.FloatFormatsClojure.IntegerFormatsClojure.LineEndingsClojure.NumericLiteralSuffixesClojure.NumericSeparatorsClojure.SequenceFormatsClojure.SetFormatsClojure.StringFormatsClojure.TrailingCommasClojure.VariableTypeHintsClojure.bytes_formatsClojure.comment_formatsClojure.date_formatsClojure.datetime_formatsClojure.declaration_stylesClojure.dict_entry_stylesClojure.dict_formatsClojure.empty_dict_keysClojure.extensionClojure.float_formatsClojure.integer_formatsClojure.line_endingsClojure.numeric_literal_suffixesClojure.numeric_separatorsClojure.pygments_nameClojure.sequence_formatsClojure.set_formatsClojure.string_formatsClojure.supports_default_dict_key_typeClojure.supports_default_dict_value_typeClojure.supports_default_ordered_map_value_typeClojure.supports_default_sequence_element_typeClojure.supports_default_set_element_typeClojure.supports_non_printable_ascii_dict_keysClojure.trailing_commasClojure.variable_type_hints_formats
CobolCobol.BytesFormatsCobol.CommentFormatsCobol.DateFormatsCobol.DatetimeFormatsCobol.DeclarationStylesCobol.DictEntryStylesCobol.DictFormatsCobol.EmptyDictKeyCobol.FloatFormatsCobol.IntegerFormatsCobol.LineEndingsCobol.NumericLiteralSuffixesCobol.NumericSeparatorsCobol.SequenceFormatsCobol.SetFormatsCobol.StringFormatsCobol.TrailingCommasCobol.VariableTypeHintsCobol.bytes_formatsCobol.comment_formatsCobol.date_formatsCobol.datetime_formatsCobol.declaration_stylesCobol.dict_entry_stylesCobol.dict_formatsCobol.empty_dict_keysCobol.extensionCobol.float_formatsCobol.integer_formatsCobol.line_endingsCobol.numeric_literal_suffixesCobol.numeric_separatorsCobol.pygments_nameCobol.sequence_formatsCobol.set_formatsCobol.string_formatsCobol.supports_default_dict_key_typeCobol.supports_default_dict_value_typeCobol.supports_default_ordered_map_value_typeCobol.supports_default_sequence_element_typeCobol.supports_default_set_element_typeCobol.supports_non_printable_ascii_dict_keysCobol.trailing_commasCobol.variable_type_hints_formats
CommonLispCommonLisp.BytesFormatsCommonLisp.CommentFormatsCommonLisp.DateFormatsCommonLisp.DatetimeFormatsCommonLisp.DeclarationStylesCommonLisp.DictEntryStylesCommonLisp.DictFormatsCommonLisp.EmptyDictKeyCommonLisp.FloatFormatsCommonLisp.IntegerFormatsCommonLisp.LineEndingsCommonLisp.NumericLiteralSuffixesCommonLisp.NumericSeparatorsCommonLisp.SequenceFormatsCommonLisp.SetFormatsCommonLisp.StringFormatsCommonLisp.TrailingCommasCommonLisp.VariableTypeHintsCommonLisp.bytes_formatsCommonLisp.comment_formatsCommonLisp.date_formatsCommonLisp.datetime_formatsCommonLisp.declaration_stylesCommonLisp.dict_entry_stylesCommonLisp.dict_formatsCommonLisp.empty_dict_keysCommonLisp.extensionCommonLisp.float_formatsCommonLisp.integer_formatsCommonLisp.line_endingsCommonLisp.numeric_literal_suffixesCommonLisp.numeric_separatorsCommonLisp.pygments_nameCommonLisp.sequence_formatsCommonLisp.set_formatsCommonLisp.string_formatsCommonLisp.supports_default_dict_key_typeCommonLisp.supports_default_dict_value_typeCommonLisp.supports_default_ordered_map_value_typeCommonLisp.supports_default_sequence_element_typeCommonLisp.supports_default_set_element_typeCommonLisp.supports_non_printable_ascii_dict_keysCommonLisp.trailing_commasCommonLisp.variable_type_hints_formats
CppCpp.BytesFormatsCpp.CommentFormatsCpp.DateFormatsCpp.DatetimeFormatsCpp.DeclarationStylesCpp.DictEntryStylesCpp.DictFormatsCpp.EmptyDictKeyCpp.FloatFormatsCpp.IntegerFormatsCpp.LineEndingsCpp.NumericLiteralSuffixesCpp.NumericSeparatorsCpp.SequenceFormatsCpp.SetFormatsCpp.StringFormatsCpp.TrailingCommasCpp.VariableTypeHintsCpp.bytes_formatsCpp.comment_formatsCpp.date_formatsCpp.datetime_formatsCpp.declaration_stylesCpp.dict_entry_stylesCpp.dict_formatsCpp.empty_dict_keysCpp.extensionCpp.float_formatsCpp.integer_formatsCpp.line_endingsCpp.numeric_literal_suffixesCpp.numeric_separatorsCpp.pygments_nameCpp.sequence_formatsCpp.set_formatsCpp.string_formatsCpp.supports_default_dict_key_typeCpp.supports_default_dict_value_typeCpp.supports_default_ordered_map_value_typeCpp.supports_default_sequence_element_typeCpp.supports_default_set_element_typeCpp.supports_non_printable_ascii_dict_keysCpp.trailing_commasCpp.variable_type_hints_formats
CrystalCrystal.BytesFormatsCrystal.CommentFormatsCrystal.DateFormatsCrystal.DatetimeFormatsCrystal.DeclarationStylesCrystal.DictEntryStylesCrystal.DictFormatsCrystal.EmptyDictKeyCrystal.FloatFormatsCrystal.IntegerFormatsCrystal.LineEndingsCrystal.NumericLiteralSuffixesCrystal.NumericSeparatorsCrystal.SequenceFormatsCrystal.SetFormatsCrystal.StringFormatsCrystal.TrailingCommasCrystal.VariableTypeHintsCrystal.bytes_formatsCrystal.comment_formatsCrystal.date_formatsCrystal.datetime_formatsCrystal.declaration_stylesCrystal.dict_entry_stylesCrystal.dict_formatsCrystal.empty_dict_keysCrystal.extensionCrystal.float_formatsCrystal.integer_formatsCrystal.line_endingsCrystal.numeric_literal_suffixesCrystal.numeric_separatorsCrystal.pygments_nameCrystal.sequence_formatsCrystal.set_formatsCrystal.string_formatsCrystal.supports_default_dict_key_typeCrystal.supports_default_dict_value_typeCrystal.supports_default_ordered_map_value_typeCrystal.supports_default_sequence_element_typeCrystal.supports_default_set_element_typeCrystal.supports_non_printable_ascii_dict_keysCrystal.trailing_commasCrystal.variable_type_hints_formats
DD.BytesFormatsD.CommentFormatsD.DateFormatsD.DatetimeFormatsD.DeclarationStylesD.DictEntryStylesD.DictFormatsD.EmptyDictKeyD.FloatFormatsD.IntegerFormatsD.LineEndingsD.NumericLiteralSuffixesD.NumericSeparatorsD.SequenceFormatsD.SetFormatsD.StringFormatsD.TrailingCommasD.VariableTypeHintsD.bytes_formatsD.comment_formatsD.date_formatsD.datetime_formatsD.declaration_stylesD.dict_entry_stylesD.dict_formatsD.empty_dict_keysD.extensionD.float_formatsD.integer_formatsD.line_endingsD.numeric_literal_suffixesD.numeric_separatorsD.pygments_nameD.sequence_formatsD.set_formatsD.string_formatsD.supports_default_dict_key_typeD.supports_default_dict_value_typeD.supports_default_ordered_map_value_typeD.supports_default_sequence_element_typeD.supports_default_set_element_typeD.supports_non_printable_ascii_dict_keysD.trailing_commasD.variable_type_hints_formats
DartDart.BytesFormatsDart.CommentFormatsDart.DateFormatsDart.DatetimeFormatsDart.DeclarationStylesDart.DictEntryStylesDart.DictFormatsDart.EmptyDictKeyDart.FloatFormatsDart.IntegerFormatsDart.LineEndingsDart.NumericLiteralSuffixesDart.NumericSeparatorsDart.SequenceFormatsDart.SetFormatsDart.StringFormatsDart.TrailingCommasDart.VariableTypeHintsDart.bytes_formatsDart.comment_formatsDart.date_formatsDart.datetime_formatsDart.declaration_stylesDart.dict_entry_stylesDart.dict_formatsDart.empty_dict_keysDart.extensionDart.float_formatsDart.integer_formatsDart.line_endingsDart.numeric_literal_suffixesDart.numeric_separatorsDart.pygments_nameDart.sequence_formatsDart.set_formatsDart.string_formatsDart.supports_default_dict_key_typeDart.supports_default_dict_value_typeDart.supports_default_ordered_map_value_typeDart.supports_default_sequence_element_typeDart.supports_default_set_element_typeDart.supports_non_printable_ascii_dict_keysDart.trailing_commasDart.variable_type_hints_formats
DhallDhall.BytesFormatsDhall.CommentFormatsDhall.DateFormatsDhall.DatetimeFormatsDhall.DeclarationStylesDhall.DictEntryStylesDhall.DictFormatsDhall.EmptyDictKeyDhall.FloatFormatsDhall.IntegerFormatsDhall.LineEndingsDhall.NumericLiteralSuffixesDhall.NumericSeparatorsDhall.SequenceFormatsDhall.SetFormatsDhall.StringFormatsDhall.TrailingCommasDhall.VariableTypeHintsDhall.bytes_formatsDhall.comment_formatsDhall.date_formatsDhall.datetime_formatsDhall.declaration_stylesDhall.dict_entry_stylesDhall.dict_formatsDhall.empty_dict_keysDhall.extensionDhall.float_formatsDhall.integer_formatsDhall.line_endingsDhall.numeric_literal_suffixesDhall.numeric_separatorsDhall.pygments_nameDhall.sequence_formatsDhall.set_formatsDhall.string_formatsDhall.supports_default_dict_key_typeDhall.supports_default_dict_value_typeDhall.supports_default_ordered_map_value_typeDhall.supports_default_sequence_element_typeDhall.supports_default_set_element_typeDhall.supports_non_printable_ascii_dict_keysDhall.trailing_commasDhall.variable_type_hints_formats
ElixirElixir.BytesFormatsElixir.CommentFormatsElixir.DateFormatsElixir.DatetimeFormatsElixir.DeclarationStylesElixir.DictEntryStylesElixir.DictFormatsElixir.EmptyDictKeyElixir.FloatFormatsElixir.IntegerFormatsElixir.LineEndingsElixir.NumericLiteralSuffixesElixir.NumericSeparatorsElixir.SequenceFormatsElixir.SetFormatsElixir.StringFormatsElixir.TrailingCommasElixir.VariableTypeHintsElixir.bytes_formatsElixir.comment_formatsElixir.date_formatsElixir.datetime_formatsElixir.declaration_stylesElixir.dict_entry_stylesElixir.dict_formatsElixir.empty_dict_keysElixir.extensionElixir.float_formatsElixir.integer_formatsElixir.line_endingsElixir.numeric_literal_suffixesElixir.numeric_separatorsElixir.pygments_nameElixir.sequence_formatsElixir.set_formatsElixir.string_formatsElixir.supports_default_dict_key_typeElixir.supports_default_dict_value_typeElixir.supports_default_ordered_map_value_typeElixir.supports_default_sequence_element_typeElixir.supports_default_set_element_typeElixir.supports_non_printable_ascii_dict_keysElixir.trailing_commasElixir.variable_type_hints_formats
ElmElm.BytesFormatsElm.CommentFormatsElm.DateFormatsElm.DatetimeFormatsElm.DeclarationStylesElm.DictEntryStylesElm.DictFormatsElm.EmptyDictKeyElm.FloatFormatsElm.IntegerFormatsElm.LineEndingsElm.NumericLiteralSuffixesElm.NumericSeparatorsElm.SequenceFormatsElm.SetFormatsElm.StringFormatsElm.TrailingCommasElm.VariableTypeHintsElm.bytes_formatsElm.comment_formatsElm.date_formatsElm.datetime_formatsElm.declaration_stylesElm.dict_entry_stylesElm.dict_formatsElm.empty_dict_keysElm.extensionElm.float_formatsElm.integer_formatsElm.line_endingsElm.numeric_literal_suffixesElm.numeric_separatorsElm.pygments_nameElm.sequence_formatsElm.set_formatsElm.string_formatsElm.supports_default_dict_key_typeElm.supports_default_dict_value_typeElm.supports_default_ordered_map_value_typeElm.supports_default_sequence_element_typeElm.supports_default_set_element_typeElm.supports_non_printable_ascii_dict_keysElm.trailing_commasElm.variable_type_hints_formats
ErlangErlang.BytesFormatsErlang.CommentFormatsErlang.DateFormatsErlang.DatetimeFormatsErlang.DeclarationStylesErlang.DictEntryStylesErlang.DictFormatsErlang.EmptyDictKeyErlang.FloatFormatsErlang.IntegerFormatsErlang.LineEndingsErlang.NumericLiteralSuffixesErlang.NumericSeparatorsErlang.SequenceFormatsErlang.SetFormatsErlang.StringFormatsErlang.TrailingCommasErlang.VariableTypeHintsErlang.bytes_formatsErlang.comment_formatsErlang.date_formatsErlang.datetime_formatsErlang.declaration_stylesErlang.dict_entry_stylesErlang.dict_formatsErlang.empty_dict_keysErlang.extensionErlang.float_formatsErlang.integer_formatsErlang.line_endingsErlang.numeric_literal_suffixesErlang.numeric_separatorsErlang.pygments_nameErlang.sequence_formatsErlang.set_formatsErlang.string_formatsErlang.supports_default_dict_key_typeErlang.supports_default_dict_value_typeErlang.supports_default_ordered_map_value_typeErlang.supports_default_sequence_element_typeErlang.supports_default_set_element_typeErlang.supports_non_printable_ascii_dict_keysErlang.trailing_commasErlang.variable_type_hints_formats
FSharpFSharp.BytesFormatsFSharp.CommentFormatsFSharp.DateFormatsFSharp.DatetimeFormatsFSharp.DeclarationStylesFSharp.DictEntryStylesFSharp.DictFormatsFSharp.EmptyDictKeyFSharp.FloatFormatsFSharp.IntegerFormatsFSharp.LineEndingsFSharp.NumericLiteralSuffixesFSharp.NumericSeparatorsFSharp.SequenceFormatsFSharp.SetFormatsFSharp.StringFormatsFSharp.TrailingCommasFSharp.VariableTypeHintsFSharp.bytes_formatsFSharp.comment_formatsFSharp.date_formatsFSharp.datetime_formatsFSharp.declaration_stylesFSharp.dict_entry_stylesFSharp.dict_formatsFSharp.empty_dict_keysFSharp.extensionFSharp.float_formatsFSharp.integer_formatsFSharp.line_endingsFSharp.numeric_literal_suffixesFSharp.numeric_separatorsFSharp.pygments_nameFSharp.sequence_formatsFSharp.set_formatsFSharp.string_formatsFSharp.supports_default_dict_key_typeFSharp.supports_default_dict_value_typeFSharp.supports_default_ordered_map_value_typeFSharp.supports_default_sequence_element_typeFSharp.supports_default_set_element_typeFSharp.supports_non_printable_ascii_dict_keysFSharp.trailing_commasFSharp.variable_type_hints_formats
FortranFortran.BytesFormatsFortran.CommentFormatsFortran.DateFormatsFortran.DatetimeFormatsFortran.DeclarationStylesFortran.DictEntryStylesFortran.DictFormatsFortran.EmptyDictKeyFortran.FloatFormatsFortran.IntegerFormatsFortran.LineEndingsFortran.NumericLiteralSuffixesFortran.NumericSeparatorsFortran.SequenceFormatsFortran.SetFormatsFortran.StringFormatsFortran.TrailingCommasFortran.VariableTypeHintsFortran.bytes_formatsFortran.comment_formatsFortran.date_formatsFortran.datetime_formatsFortran.declaration_stylesFortran.dict_entry_stylesFortran.dict_formatsFortran.empty_dict_keysFortran.extensionFortran.float_formatsFortran.integer_formatsFortran.line_endingsFortran.numeric_literal_suffixesFortran.numeric_separatorsFortran.pygments_nameFortran.sequence_formatsFortran.set_formatsFortran.string_formatsFortran.supports_default_dict_key_typeFortran.supports_default_dict_value_typeFortran.supports_default_ordered_map_value_typeFortran.supports_default_sequence_element_typeFortran.supports_default_set_element_typeFortran.supports_non_printable_ascii_dict_keysFortran.trailing_commasFortran.variable_type_hints_formats
GleamGleam.BytesFormatsGleam.CommentFormatsGleam.DateFormatsGleam.DatetimeFormatsGleam.DeclarationStylesGleam.DictEntryStylesGleam.DictFormatsGleam.EmptyDictKeyGleam.FloatFormatsGleam.IntegerFormatsGleam.LineEndingsGleam.NumericLiteralSuffixesGleam.NumericSeparatorsGleam.SequenceFormatsGleam.SetFormatsGleam.StringFormatsGleam.TrailingCommasGleam.VariableTypeHintsGleam.bytes_formatsGleam.comment_formatsGleam.date_formatsGleam.datetime_formatsGleam.declaration_stylesGleam.dict_entry_stylesGleam.dict_formatsGleam.empty_dict_keysGleam.extensionGleam.float_formatsGleam.integer_formatsGleam.line_endingsGleam.numeric_literal_suffixesGleam.numeric_separatorsGleam.pygments_nameGleam.sequence_formatsGleam.set_formatsGleam.string_formatsGleam.supports_default_dict_key_typeGleam.supports_default_dict_value_typeGleam.supports_default_ordered_map_value_typeGleam.supports_default_sequence_element_typeGleam.supports_default_set_element_typeGleam.supports_non_printable_ascii_dict_keysGleam.trailing_commasGleam.variable_type_hints_formats
GoGo.BytesFormatsGo.CommentFormatsGo.DateFormatsGo.DatetimeFormatsGo.DeclarationStylesGo.DictEntryStylesGo.DictFormatsGo.EmptyDictKeyGo.FloatFormatsGo.IntegerFormatsGo.LineEndingsGo.NumericLiteralSuffixesGo.NumericSeparatorsGo.SequenceFormatsGo.SetFormatsGo.StringFormatsGo.TrailingCommasGo.VariableTypeHintsGo.bytes_formatsGo.comment_formatsGo.date_formatsGo.datetime_formatsGo.declaration_stylesGo.dict_entry_stylesGo.dict_formatsGo.empty_dict_keysGo.extensionGo.float_formatsGo.integer_formatsGo.line_endingsGo.numeric_literal_suffixesGo.numeric_separatorsGo.pygments_nameGo.sequence_formatsGo.set_formatsGo.string_formatsGo.supports_default_dict_key_typeGo.supports_default_dict_value_typeGo.supports_default_ordered_map_value_typeGo.supports_default_sequence_element_typeGo.supports_default_set_element_typeGo.supports_non_printable_ascii_dict_keysGo.trailing_commasGo.variable_type_hints_formats
GroovyGroovy.BytesFormatsGroovy.CommentFormatsGroovy.DateFormatsGroovy.DatetimeFormatsGroovy.DeclarationStylesGroovy.DictEntryStylesGroovy.DictFormatsGroovy.EmptyDictKeyGroovy.FloatFormatsGroovy.IntegerFormatsGroovy.LineEndingsGroovy.NumericLiteralSuffixesGroovy.NumericSeparatorsGroovy.SequenceFormatsGroovy.SetFormatsGroovy.StringFormatsGroovy.TrailingCommasGroovy.VariableTypeHintsGroovy.bytes_formatsGroovy.comment_formatsGroovy.date_formatsGroovy.datetime_formatsGroovy.declaration_stylesGroovy.dict_entry_stylesGroovy.dict_formatsGroovy.empty_dict_keysGroovy.extensionGroovy.float_formatsGroovy.integer_formatsGroovy.line_endingsGroovy.numeric_literal_suffixesGroovy.numeric_separatorsGroovy.pygments_nameGroovy.sequence_formatsGroovy.set_formatsGroovy.string_formatsGroovy.supports_default_dict_key_typeGroovy.supports_default_dict_value_typeGroovy.supports_default_ordered_map_value_typeGroovy.supports_default_sequence_element_typeGroovy.supports_default_set_element_typeGroovy.supports_non_printable_ascii_dict_keysGroovy.trailing_commasGroovy.variable_type_hints_formats
HaskellHaskell.BytesFormatsHaskell.CommentFormatsHaskell.DateFormatsHaskell.DatetimeFormatsHaskell.DeclarationStylesHaskell.DictEntryStylesHaskell.DictFormatsHaskell.EmptyDictKeyHaskell.FloatFormatsHaskell.IntegerFormatsHaskell.LineEndingsHaskell.NumericLiteralSuffixesHaskell.NumericSeparatorsHaskell.SequenceFormatsHaskell.SetFormatsHaskell.StringFormatsHaskell.TrailingCommasHaskell.VariableTypeHintsHaskell.bytes_formatsHaskell.comment_formatsHaskell.date_formatsHaskell.datetime_formatsHaskell.declaration_stylesHaskell.dict_entry_stylesHaskell.dict_formatsHaskell.empty_dict_keysHaskell.extensionHaskell.float_formatsHaskell.integer_formatsHaskell.line_endingsHaskell.numeric_literal_suffixesHaskell.numeric_separatorsHaskell.pygments_nameHaskell.sequence_formatsHaskell.set_formatsHaskell.string_formatsHaskell.supports_default_dict_key_typeHaskell.supports_default_dict_value_typeHaskell.supports_default_ordered_map_value_typeHaskell.supports_default_sequence_element_typeHaskell.supports_default_set_element_typeHaskell.supports_non_printable_ascii_dict_keysHaskell.trailing_commasHaskell.variable_type_hints_formats
HclHcl.BytesFormatsHcl.CommentFormatsHcl.DateFormatsHcl.DatetimeFormatsHcl.DeclarationStylesHcl.DictEntryStylesHcl.DictFormatsHcl.EmptyDictKeyHcl.FloatFormatsHcl.IntegerFormatsHcl.LineEndingsHcl.NumericLiteralSuffixesHcl.NumericSeparatorsHcl.SequenceFormatsHcl.SetFormatsHcl.StringFormatsHcl.TrailingCommasHcl.VariableTypeHintsHcl.bytes_formatsHcl.comment_formatsHcl.date_formatsHcl.datetime_formatsHcl.declaration_stylesHcl.dict_entry_stylesHcl.dict_formatsHcl.empty_dict_keysHcl.extensionHcl.float_formatsHcl.integer_formatsHcl.line_endingsHcl.numeric_literal_suffixesHcl.numeric_separatorsHcl.pygments_nameHcl.sequence_formatsHcl.set_formatsHcl.string_formatsHcl.supports_default_dict_key_typeHcl.supports_default_dict_value_typeHcl.supports_default_ordered_map_value_typeHcl.supports_default_sequence_element_typeHcl.supports_default_set_element_typeHcl.supports_non_printable_ascii_dict_keysHcl.trailing_commasHcl.variable_type_hints_formats
JavaJava.BytesFormatsJava.CommentFormatsJava.DateFormatsJava.DatetimeFormatsJava.DeclarationStylesJava.DictEntryStylesJava.DictFormatsJava.EmptyDictKeyJava.FloatFormatsJava.IntegerFormatsJava.LineEndingsJava.NumericLiteralSuffixesJava.NumericSeparatorsJava.SequenceFormatsJava.SetFormatsJava.StringFormatsJava.TrailingCommasJava.VariableTypeHintsJava.bytes_formatsJava.comment_formatsJava.date_formatsJava.datetime_formatsJava.declaration_stylesJava.dict_entry_stylesJava.dict_formatsJava.empty_dict_keysJava.extensionJava.float_formatsJava.integer_formatsJava.line_endingsJava.numeric_literal_suffixesJava.numeric_separatorsJava.pygments_nameJava.sequence_formatsJava.set_formatsJava.string_formatsJava.supports_default_dict_key_typeJava.supports_default_dict_value_typeJava.supports_default_ordered_map_value_typeJava.supports_default_sequence_element_typeJava.supports_default_set_element_typeJava.supports_non_printable_ascii_dict_keysJava.trailing_commasJava.variable_type_hints_formats
JavaScriptJavaScript.BytesFormatsJavaScript.CommentFormatsJavaScript.DateFormatsJavaScript.DatetimeFormatsJavaScript.DeclarationStylesJavaScript.DictEntryStylesJavaScript.DictFormatsJavaScript.EmptyDictKeyJavaScript.FloatFormatsJavaScript.IntegerFormatsJavaScript.LineEndingsJavaScript.NumericLiteralSuffixesJavaScript.NumericSeparatorsJavaScript.SequenceFormatsJavaScript.SetFormatsJavaScript.StringFormatsJavaScript.TrailingCommasJavaScript.VariableTypeHintsJavaScript.bytes_formatsJavaScript.comment_formatsJavaScript.date_formatsJavaScript.datetime_formatsJavaScript.declaration_stylesJavaScript.dict_entry_stylesJavaScript.dict_formatsJavaScript.empty_dict_keysJavaScript.extensionJavaScript.float_formatsJavaScript.integer_formatsJavaScript.line_endingsJavaScript.numeric_literal_suffixesJavaScript.numeric_separatorsJavaScript.pygments_nameJavaScript.sequence_formatsJavaScript.set_formatsJavaScript.string_formatsJavaScript.supports_default_dict_key_typeJavaScript.supports_default_dict_value_typeJavaScript.supports_default_ordered_map_value_typeJavaScript.supports_default_sequence_element_typeJavaScript.supports_default_set_element_typeJavaScript.supports_non_printable_ascii_dict_keysJavaScript.trailing_commasJavaScript.variable_type_hints_formats
Json5Json5.BytesFormatsJson5.CommentFormatsJson5.DateFormatsJson5.DatetimeFormatsJson5.DeclarationStylesJson5.DictEntryStylesJson5.DictFormatsJson5.EmptyDictKeyJson5.FloatFormatsJson5.IntegerFormatsJson5.LineEndingsJson5.NumericLiteralSuffixesJson5.NumericSeparatorsJson5.SequenceFormatsJson5.SetFormatsJson5.StringFormatsJson5.TrailingCommasJson5.VariableTypeHintsJson5.bytes_formatsJson5.comment_formatsJson5.date_formatsJson5.datetime_formatsJson5.declaration_stylesJson5.dict_entry_stylesJson5.dict_formatsJson5.empty_dict_keysJson5.extensionJson5.float_formatsJson5.integer_formatsJson5.line_endingsJson5.numeric_literal_suffixesJson5.numeric_separatorsJson5.pygments_nameJson5.sequence_formatsJson5.set_formatsJson5.string_formatsJson5.supports_default_dict_key_typeJson5.supports_default_dict_value_typeJson5.supports_default_ordered_map_value_typeJson5.supports_default_sequence_element_typeJson5.supports_default_set_element_typeJson5.supports_non_printable_ascii_dict_keysJson5.trailing_commasJson5.variable_type_hints_formats
JsonnetJsonnet.BytesFormatsJsonnet.CommentFormatsJsonnet.DateFormatsJsonnet.DatetimeFormatsJsonnet.DeclarationStylesJsonnet.DictEntryStylesJsonnet.DictFormatsJsonnet.EmptyDictKeyJsonnet.FloatFormatsJsonnet.IntegerFormatsJsonnet.LineEndingsJsonnet.NumericLiteralSuffixesJsonnet.NumericSeparatorsJsonnet.SequenceFormatsJsonnet.SetFormatsJsonnet.StringFormatsJsonnet.TrailingCommasJsonnet.VariableTypeHintsJsonnet.bytes_formatsJsonnet.comment_formatsJsonnet.date_formatsJsonnet.datetime_formatsJsonnet.declaration_stylesJsonnet.dict_entry_stylesJsonnet.dict_formatsJsonnet.empty_dict_keysJsonnet.extensionJsonnet.float_formatsJsonnet.integer_formatsJsonnet.line_endingsJsonnet.numeric_literal_suffixesJsonnet.numeric_separatorsJsonnet.pygments_nameJsonnet.sequence_formatsJsonnet.set_formatsJsonnet.string_formatsJsonnet.supports_default_dict_key_typeJsonnet.supports_default_dict_value_typeJsonnet.supports_default_ordered_map_value_typeJsonnet.supports_default_sequence_element_typeJsonnet.supports_default_set_element_typeJsonnet.supports_non_printable_ascii_dict_keysJsonnet.trailing_commasJsonnet.variable_type_hints_formats
JuliaJulia.BytesFormatsJulia.CommentFormatsJulia.DateFormatsJulia.DatetimeFormatsJulia.DeclarationStylesJulia.DictEntryStylesJulia.DictFormatsJulia.EmptyDictKeyJulia.FloatFormatsJulia.IntegerFormatsJulia.LineEndingsJulia.NumericLiteralSuffixesJulia.NumericSeparatorsJulia.SequenceFormatsJulia.SetFormatsJulia.StringFormatsJulia.TrailingCommasJulia.VariableTypeHintsJulia.bytes_formatsJulia.comment_formatsJulia.date_formatsJulia.datetime_formatsJulia.declaration_stylesJulia.dict_entry_stylesJulia.dict_formatsJulia.empty_dict_keysJulia.extensionJulia.float_formatsJulia.integer_formatsJulia.line_endingsJulia.numeric_literal_suffixesJulia.numeric_separatorsJulia.pygments_nameJulia.sequence_formatsJulia.set_formatsJulia.string_formatsJulia.supports_default_dict_key_typeJulia.supports_default_dict_value_typeJulia.supports_default_ordered_map_value_typeJulia.supports_default_sequence_element_typeJulia.supports_default_set_element_typeJulia.supports_non_printable_ascii_dict_keysJulia.trailing_commasJulia.variable_type_hints_formats
KotlinKotlin.BytesFormatsKotlin.CommentFormatsKotlin.DateFormatsKotlin.DatetimeFormatsKotlin.DeclarationStylesKotlin.DictEntryStylesKotlin.DictFormatsKotlin.EmptyDictKeyKotlin.FloatFormatsKotlin.IntegerFormatsKotlin.LineEndingsKotlin.NumericLiteralSuffixesKotlin.NumericSeparatorsKotlin.SequenceFormatsKotlin.SetFormatsKotlin.StringFormatsKotlin.TrailingCommasKotlin.VariableTypeHintsKotlin.bytes_formatsKotlin.comment_formatsKotlin.date_formatsKotlin.datetime_formatsKotlin.declaration_stylesKotlin.dict_entry_stylesKotlin.dict_formatsKotlin.empty_dict_keysKotlin.extensionKotlin.float_formatsKotlin.integer_formatsKotlin.line_endingsKotlin.numeric_literal_suffixesKotlin.numeric_separatorsKotlin.pygments_nameKotlin.sequence_formatsKotlin.set_formatsKotlin.string_formatsKotlin.supports_default_dict_key_typeKotlin.supports_default_dict_value_typeKotlin.supports_default_ordered_map_value_typeKotlin.supports_default_sequence_element_typeKotlin.supports_default_set_element_typeKotlin.supports_non_printable_ascii_dict_keysKotlin.trailing_commasKotlin.variable_type_hints_formats
LuaLua.BytesFormatsLua.CommentFormatsLua.DateFormatsLua.DatetimeFormatsLua.DeclarationStylesLua.DictEntryStylesLua.DictFormatsLua.EmptyDictKeyLua.FloatFormatsLua.IntegerFormatsLua.LineEndingsLua.NumericLiteralSuffixesLua.NumericSeparatorsLua.SequenceFormatsLua.SetFormatsLua.StringFormatsLua.TrailingCommasLua.VariableTypeHintsLua.bytes_formatsLua.comment_formatsLua.date_formatsLua.datetime_formatsLua.declaration_stylesLua.dict_entry_stylesLua.dict_formatsLua.empty_dict_keysLua.extensionLua.float_formatsLua.integer_formatsLua.line_endingsLua.numeric_literal_suffixesLua.numeric_separatorsLua.pygments_nameLua.sequence_formatsLua.set_formatsLua.string_formatsLua.supports_default_dict_key_typeLua.supports_default_dict_value_typeLua.supports_default_ordered_map_value_typeLua.supports_default_sequence_element_typeLua.supports_default_set_element_typeLua.supports_non_printable_ascii_dict_keysLua.trailing_commasLua.variable_type_hints_formats
MatlabMatlab.BytesFormatsMatlab.CommentFormatsMatlab.DateFormatsMatlab.DatetimeFormatsMatlab.DeclarationStylesMatlab.DictEntryStylesMatlab.DictFormatsMatlab.EmptyDictKeyMatlab.FloatFormatsMatlab.IntegerFormatsMatlab.LineEndingsMatlab.NumericLiteralSuffixesMatlab.NumericSeparatorsMatlab.SequenceFormatsMatlab.SetFormatsMatlab.StringFormatsMatlab.TrailingCommasMatlab.VariableTypeHintsMatlab.bytes_formatsMatlab.comment_formatsMatlab.date_formatsMatlab.datetime_formatsMatlab.declaration_stylesMatlab.dict_entry_stylesMatlab.dict_formatsMatlab.empty_dict_keysMatlab.extensionMatlab.float_formatsMatlab.integer_formatsMatlab.line_endingsMatlab.numeric_literal_suffixesMatlab.numeric_separatorsMatlab.pygments_nameMatlab.sequence_formatsMatlab.set_formatsMatlab.string_formatsMatlab.supports_default_dict_key_typeMatlab.supports_default_dict_value_typeMatlab.supports_default_ordered_map_value_typeMatlab.supports_default_sequence_element_typeMatlab.supports_default_set_element_typeMatlab.supports_non_printable_ascii_dict_keysMatlab.trailing_commasMatlab.variable_type_hints_formats
MojoMojo.BytesFormatsMojo.CommentFormatsMojo.DateFormatsMojo.DatetimeFormatsMojo.DeclarationStylesMojo.DictEntryStylesMojo.DictFormatsMojo.EmptyDictKeyMojo.FloatFormatsMojo.IntegerFormatsMojo.LineEndingsMojo.NumericLiteralSuffixesMojo.NumericSeparatorsMojo.SequenceFormatsMojo.SetFormatsMojo.StringFormatsMojo.TrailingCommasMojo.VariableTypeHintsMojo.bytes_formatsMojo.comment_formatsMojo.date_formatsMojo.datetime_formatsMojo.declaration_stylesMojo.dict_entry_stylesMojo.dict_formatsMojo.empty_dict_keysMojo.extensionMojo.float_formatsMojo.integer_formatsMojo.line_endingsMojo.numeric_literal_suffixesMojo.numeric_separatorsMojo.pygments_nameMojo.sequence_formatsMojo.set_formatsMojo.string_formatsMojo.supports_default_dict_key_typeMojo.supports_default_dict_value_typeMojo.supports_default_ordered_map_value_typeMojo.supports_default_sequence_element_typeMojo.supports_default_set_element_typeMojo.supports_non_printable_ascii_dict_keysMojo.trailing_commasMojo.variable_type_hints_formats
NimNim.BytesFormatsNim.CommentFormatsNim.DateFormatsNim.DatetimeFormatsNim.DeclarationStylesNim.DictEntryStylesNim.DictFormatsNim.EmptyDictKeyNim.FloatFormatsNim.IntegerFormatsNim.LineEndingsNim.NumericLiteralSuffixesNim.NumericSeparatorsNim.SequenceFormatsNim.SetFormatsNim.StringFormatsNim.TrailingCommasNim.VariableTypeHintsNim.bytes_formatsNim.comment_formatsNim.date_formatsNim.datetime_formatsNim.declaration_stylesNim.dict_entry_stylesNim.dict_formatsNim.empty_dict_keysNim.extensionNim.float_formatsNim.integer_formatsNim.line_endingsNim.numeric_literal_suffixesNim.numeric_separatorsNim.pygments_nameNim.sequence_formatsNim.set_formatsNim.string_formatsNim.supports_default_dict_key_typeNim.supports_default_dict_value_typeNim.supports_default_ordered_map_value_typeNim.supports_default_sequence_element_typeNim.supports_default_set_element_typeNim.supports_non_printable_ascii_dict_keysNim.trailing_commasNim.variable_type_hints_formats
NorgNorg.BytesFormatsNorg.CommentFormatsNorg.DateFormatsNorg.DatetimeFormatsNorg.DeclarationStylesNorg.DictEntryStylesNorg.DictFormatsNorg.EmptyDictKeyNorg.FloatFormatsNorg.IntegerFormatsNorg.LineEndingsNorg.NumericLiteralSuffixesNorg.NumericSeparatorsNorg.SequenceFormatsNorg.SetFormatsNorg.StringFormatsNorg.TrailingCommasNorg.VariableTypeHintsNorg.bytes_formatsNorg.comment_formatsNorg.date_formatsNorg.datetime_formatsNorg.declaration_stylesNorg.dict_entry_stylesNorg.dict_formatsNorg.empty_dict_keysNorg.extensionNorg.float_formatsNorg.integer_formatsNorg.line_endingsNorg.numeric_literal_suffixesNorg.numeric_separatorsNorg.pygments_nameNorg.sequence_formatsNorg.set_formatsNorg.string_formatsNorg.supports_default_dict_key_typeNorg.supports_default_dict_value_typeNorg.supports_default_ordered_map_value_typeNorg.supports_default_sequence_element_typeNorg.supports_default_set_element_typeNorg.supports_non_printable_ascii_dict_keysNorg.trailing_commasNorg.variable_type_hints_formats
OCamlOCaml.BytesFormatsOCaml.CommentFormatsOCaml.DateFormatsOCaml.DatetimeFormatsOCaml.DeclarationStylesOCaml.DictEntryStylesOCaml.DictFormatsOCaml.EmptyDictKeyOCaml.FloatFormatsOCaml.IntegerFormatsOCaml.LineEndingsOCaml.NumericLiteralSuffixesOCaml.NumericSeparatorsOCaml.SequenceFormatsOCaml.SetFormatsOCaml.StringFormatsOCaml.TrailingCommasOCaml.VariableTypeHintsOCaml.bytes_formatsOCaml.comment_formatsOCaml.date_formatsOCaml.datetime_formatsOCaml.declaration_stylesOCaml.dict_entry_stylesOCaml.dict_formatsOCaml.empty_dict_keysOCaml.extensionOCaml.float_formatsOCaml.integer_formatsOCaml.line_endingsOCaml.numeric_literal_suffixesOCaml.numeric_separatorsOCaml.pygments_nameOCaml.sequence_formatsOCaml.set_formatsOCaml.string_formatsOCaml.supports_default_dict_key_typeOCaml.supports_default_dict_value_typeOCaml.supports_default_ordered_map_value_typeOCaml.supports_default_sequence_element_typeOCaml.supports_default_set_element_typeOCaml.supports_non_printable_ascii_dict_keysOCaml.trailing_commasOCaml.variable_type_hints_formats
ObjectiveCObjectiveC.BytesFormatsObjectiveC.CommentFormatsObjectiveC.DateFormatsObjectiveC.DatetimeFormatsObjectiveC.DeclarationStylesObjectiveC.DictEntryStylesObjectiveC.DictFormatsObjectiveC.EmptyDictKeyObjectiveC.FloatFormatsObjectiveC.IntegerFormatsObjectiveC.LineEndingsObjectiveC.NumericLiteralSuffixesObjectiveC.NumericSeparatorsObjectiveC.SequenceFormatsObjectiveC.SetFormatsObjectiveC.StringFormatsObjectiveC.TrailingCommasObjectiveC.VariableTypeHintsObjectiveC.bytes_formatsObjectiveC.comment_formatsObjectiveC.date_formatsObjectiveC.datetime_formatsObjectiveC.declaration_stylesObjectiveC.dict_entry_stylesObjectiveC.dict_formatsObjectiveC.empty_dict_keysObjectiveC.extensionObjectiveC.float_formatsObjectiveC.integer_formatsObjectiveC.line_endingsObjectiveC.numeric_literal_suffixesObjectiveC.numeric_separatorsObjectiveC.pygments_nameObjectiveC.sequence_formatsObjectiveC.set_formatsObjectiveC.string_formatsObjectiveC.supports_default_dict_key_typeObjectiveC.supports_default_dict_value_typeObjectiveC.supports_default_ordered_map_value_typeObjectiveC.supports_default_sequence_element_typeObjectiveC.supports_default_set_element_typeObjectiveC.supports_non_printable_ascii_dict_keysObjectiveC.trailing_commasObjectiveC.variable_type_hints_formats
OccamOccam.BytesFormatsOccam.CommentFormatsOccam.DateFormatsOccam.DatetimeFormatsOccam.DeclarationStylesOccam.DictEntryStylesOccam.DictFormatsOccam.EmptyDictKeyOccam.FloatFormatsOccam.IntegerFormatsOccam.LineEndingsOccam.NumericLiteralSuffixesOccam.NumericSeparatorsOccam.SequenceFormatsOccam.SetFormatsOccam.StringFormatsOccam.TrailingCommasOccam.VariableTypeHintsOccam.bytes_formatsOccam.comment_formatsOccam.date_formatsOccam.datetime_formatsOccam.declaration_stylesOccam.dict_entry_stylesOccam.dict_formatsOccam.empty_dict_keysOccam.extensionOccam.float_formatsOccam.integer_formatsOccam.line_endingsOccam.numeric_literal_suffixesOccam.numeric_separatorsOccam.pygments_nameOccam.sequence_formatsOccam.set_formatsOccam.string_formatsOccam.supports_default_dict_key_typeOccam.supports_default_dict_value_typeOccam.supports_default_ordered_map_value_typeOccam.supports_default_sequence_element_typeOccam.supports_default_set_element_typeOccam.supports_non_printable_ascii_dict_keysOccam.trailing_commasOccam.variable_type_hints_formats
OdinOdin.BytesFormatsOdin.CommentFormatsOdin.DateFormatsOdin.DatetimeFormatsOdin.DeclarationStylesOdin.DictEntryStylesOdin.DictFormatsOdin.EmptyDictKeyOdin.FloatFormatsOdin.IntegerFormatsOdin.LineEndingsOdin.NumericLiteralSuffixesOdin.NumericSeparatorsOdin.SequenceFormatsOdin.SetFormatsOdin.StringFormatsOdin.TrailingCommasOdin.VariableTypeHintsOdin.bytes_formatsOdin.comment_formatsOdin.date_formatsOdin.datetime_formatsOdin.declaration_stylesOdin.dict_entry_stylesOdin.dict_formatsOdin.empty_dict_keysOdin.extensionOdin.float_formatsOdin.integer_formatsOdin.line_endingsOdin.numeric_literal_suffixesOdin.numeric_separatorsOdin.pygments_nameOdin.sequence_formatsOdin.set_formatsOdin.string_formatsOdin.supports_default_dict_key_typeOdin.supports_default_dict_value_typeOdin.supports_default_ordered_map_value_typeOdin.supports_default_sequence_element_typeOdin.supports_default_set_element_typeOdin.supports_non_printable_ascii_dict_keysOdin.trailing_commasOdin.variable_type_hints_formats
PerlPerl.BytesFormatsPerl.CommentFormatsPerl.DateFormatsPerl.DatetimeFormatsPerl.DeclarationStylesPerl.DictEntryStylesPerl.DictFormatsPerl.EmptyDictKeyPerl.FloatFormatsPerl.IntegerFormatsPerl.LineEndingsPerl.NumericLiteralSuffixesPerl.NumericSeparatorsPerl.SequenceFormatsPerl.SetFormatsPerl.StringFormatsPerl.TrailingCommasPerl.VariableTypeHintsPerl.bytes_formatsPerl.comment_formatsPerl.date_formatsPerl.datetime_formatsPerl.declaration_stylesPerl.dict_entry_stylesPerl.dict_formatsPerl.empty_dict_keysPerl.extensionPerl.float_formatsPerl.integer_formatsPerl.line_endingsPerl.numeric_literal_suffixesPerl.numeric_separatorsPerl.pygments_namePerl.sequence_formatsPerl.set_formatsPerl.string_formatsPerl.supports_default_dict_key_typePerl.supports_default_dict_value_typePerl.supports_default_ordered_map_value_typePerl.supports_default_sequence_element_typePerl.supports_default_set_element_typePerl.supports_non_printable_ascii_dict_keysPerl.trailing_commasPerl.variable_type_hints_formats
PhpPhp.BytesFormatsPhp.CommentFormatsPhp.DateFormatsPhp.DatetimeFormatsPhp.DeclarationStylesPhp.DictEntryStylesPhp.DictFormatsPhp.EmptyDictKeyPhp.FloatFormatsPhp.IntegerFormatsPhp.LineEndingsPhp.NumericLiteralSuffixesPhp.NumericSeparatorsPhp.SequenceFormatsPhp.SetFormatsPhp.StringFormatsPhp.TrailingCommasPhp.VariableTypeHintsPhp.bytes_formatsPhp.comment_formatsPhp.date_formatsPhp.datetime_formatsPhp.declaration_stylesPhp.dict_entry_stylesPhp.dict_formatsPhp.empty_dict_keysPhp.extensionPhp.float_formatsPhp.integer_formatsPhp.line_endingsPhp.numeric_literal_suffixesPhp.numeric_separatorsPhp.pygments_namePhp.sequence_formatsPhp.set_formatsPhp.string_formatsPhp.supports_default_dict_key_typePhp.supports_default_dict_value_typePhp.supports_default_ordered_map_value_typePhp.supports_default_sequence_element_typePhp.supports_default_set_element_typePhp.supports_non_printable_ascii_dict_keysPhp.trailing_commasPhp.variable_type_hints_formats
PowerShellPowerShell.BytesFormatsPowerShell.CommentFormatsPowerShell.DateFormatsPowerShell.DatetimeFormatsPowerShell.DeclarationStylesPowerShell.DictEntryStylesPowerShell.DictFormatsPowerShell.EmptyDictKeyPowerShell.FloatFormatsPowerShell.IntegerFormatsPowerShell.LineEndingsPowerShell.NumericLiteralSuffixesPowerShell.NumericSeparatorsPowerShell.SequenceFormatsPowerShell.SetFormatsPowerShell.StringFormatsPowerShell.TrailingCommasPowerShell.VariableTypeHintsPowerShell.bytes_formatsPowerShell.comment_formatsPowerShell.date_formatsPowerShell.datetime_formatsPowerShell.declaration_stylesPowerShell.dict_entry_stylesPowerShell.dict_formatsPowerShell.empty_dict_keysPowerShell.extensionPowerShell.float_formatsPowerShell.integer_formatsPowerShell.line_endingsPowerShell.numeric_literal_suffixesPowerShell.numeric_separatorsPowerShell.pygments_namePowerShell.sequence_formatsPowerShell.set_formatsPowerShell.string_formatsPowerShell.supports_default_dict_key_typePowerShell.supports_default_dict_value_typePowerShell.supports_default_ordered_map_value_typePowerShell.supports_default_sequence_element_typePowerShell.supports_default_set_element_typePowerShell.supports_non_printable_ascii_dict_keysPowerShell.trailing_commasPowerShell.variable_type_hints_formats
PureScriptPureScript.BytesFormatsPureScript.CommentFormatsPureScript.DateFormatsPureScript.DatetimeFormatsPureScript.DeclarationStylesPureScript.DictEntryStylesPureScript.DictFormatsPureScript.EmptyDictKeyPureScript.FloatFormatsPureScript.IntegerFormatsPureScript.LineEndingsPureScript.NumericLiteralSuffixesPureScript.NumericSeparatorsPureScript.SequenceFormatsPureScript.SetFormatsPureScript.StringFormatsPureScript.TrailingCommasPureScript.VariableTypeHintsPureScript.bytes_formatsPureScript.comment_formatsPureScript.date_formatsPureScript.datetime_formatsPureScript.declaration_stylesPureScript.dict_entry_stylesPureScript.dict_formatsPureScript.empty_dict_keysPureScript.extensionPureScript.float_formatsPureScript.integer_formatsPureScript.line_endingsPureScript.numeric_literal_suffixesPureScript.numeric_separatorsPureScript.pygments_namePureScript.sequence_formatsPureScript.set_formatsPureScript.string_formatsPureScript.supports_default_dict_key_typePureScript.supports_default_dict_value_typePureScript.supports_default_ordered_map_value_typePureScript.supports_default_sequence_element_typePureScript.supports_default_set_element_typePureScript.supports_non_printable_ascii_dict_keysPureScript.trailing_commasPureScript.variable_type_hints_formats
PythonPython.BytesFormatsPython.CommentFormatsPython.DateFormatsPython.DatetimeFormatsPython.DeclarationStylesPython.DictEntryStylesPython.DictFormatsPython.EmptyDictKeyPython.FloatFormatsPython.IntegerFormatsPython.LineEndingsPython.NumericLiteralSuffixesPython.NumericSeparatorsPython.SequenceFormatsPython.SetFormatsPython.StringFormatsPython.TrailingCommasPython.VariableTypeHintsPython.bytes_formatsPython.comment_formatsPython.date_formatsPython.datetime_formatsPython.declaration_stylesPython.dict_entry_stylesPython.dict_formatsPython.empty_dict_keysPython.extensionPython.float_formatsPython.integer_formatsPython.line_endingsPython.numeric_literal_suffixesPython.numeric_separatorsPython.pygments_namePython.sequence_formatsPython.set_formatsPython.string_formatsPython.supports_default_dict_key_typePython.supports_default_dict_value_typePython.supports_default_ordered_map_value_typePython.supports_default_sequence_element_typePython.supports_default_set_element_typePython.supports_non_printable_ascii_dict_keysPython.trailing_commasPython.variable_type_hints_formats
RR.BytesFormatsR.CommentFormatsR.DateFormatsR.DatetimeFormatsR.DeclarationStylesR.DictEntryStylesR.DictFormatsR.EmptyDictKeyR.FloatFormatsR.IntegerFormatsR.LineEndingsR.NumericLiteralSuffixesR.NumericSeparatorsR.SequenceFormatsR.SetFormatsR.StringFormatsR.TrailingCommasR.VariableTypeHintsR.bytes_formatsR.comment_formatsR.date_formatsR.datetime_formatsR.declaration_stylesR.dict_entry_stylesR.dict_formatsR.empty_dict_keysR.extensionR.float_formatsR.integer_formatsR.line_endingsR.numeric_literal_suffixesR.numeric_separatorsR.pygments_nameR.sequence_formatsR.set_formatsR.string_formatsR.supports_default_dict_key_typeR.supports_default_dict_value_typeR.supports_default_ordered_map_value_typeR.supports_default_sequence_element_typeR.supports_default_set_element_typeR.supports_non_printable_ascii_dict_keysR.trailing_commasR.variable_type_hints_formats
RacketRacket.BytesFormatsRacket.CommentFormatsRacket.DateFormatsRacket.DatetimeFormatsRacket.DeclarationStylesRacket.DictEntryStylesRacket.DictFormatsRacket.EmptyDictKeyRacket.FloatFormatsRacket.IntegerFormatsRacket.LineEndingsRacket.NumericLiteralSuffixesRacket.NumericSeparatorsRacket.SequenceFormatsRacket.SetFormatsRacket.StringFormatsRacket.TrailingCommasRacket.VariableTypeHintsRacket.bytes_formatsRacket.comment_formatsRacket.date_formatsRacket.datetime_formatsRacket.declaration_stylesRacket.dict_entry_stylesRacket.dict_formatsRacket.empty_dict_keysRacket.extensionRacket.float_formatsRacket.integer_formatsRacket.line_endingsRacket.numeric_literal_suffixesRacket.numeric_separatorsRacket.pygments_nameRacket.sequence_formatsRacket.set_formatsRacket.string_formatsRacket.supports_default_dict_key_typeRacket.supports_default_dict_value_typeRacket.supports_default_ordered_map_value_typeRacket.supports_default_sequence_element_typeRacket.supports_default_set_element_typeRacket.supports_non_printable_ascii_dict_keysRacket.trailing_commasRacket.variable_type_hints_formats
RakuRaku.BytesFormatsRaku.CommentFormatsRaku.DateFormatsRaku.DatetimeFormatsRaku.DeclarationStylesRaku.DictEntryStylesRaku.DictFormatsRaku.EmptyDictKeyRaku.FloatFormatsRaku.IntegerFormatsRaku.LineEndingsRaku.NumericLiteralSuffixesRaku.NumericSeparatorsRaku.SequenceFormatsRaku.SetFormatsRaku.StringFormatsRaku.TrailingCommasRaku.VariableTypeHintsRaku.bytes_formatsRaku.comment_formatsRaku.date_formatsRaku.datetime_formatsRaku.declaration_stylesRaku.dict_entry_stylesRaku.dict_formatsRaku.empty_dict_keysRaku.extensionRaku.float_formatsRaku.integer_formatsRaku.line_endingsRaku.numeric_literal_suffixesRaku.numeric_separatorsRaku.pygments_nameRaku.sequence_formatsRaku.set_formatsRaku.string_formatsRaku.supports_default_dict_key_typeRaku.supports_default_dict_value_typeRaku.supports_default_ordered_map_value_typeRaku.supports_default_sequence_element_typeRaku.supports_default_set_element_typeRaku.supports_non_printable_ascii_dict_keysRaku.trailing_commasRaku.variable_type_hints_formats
RubyRuby.BytesFormatsRuby.CommentFormatsRuby.DateFormatsRuby.DatetimeFormatsRuby.DeclarationStylesRuby.DictEntryStylesRuby.DictFormatsRuby.EmptyDictKeyRuby.FloatFormatsRuby.IntegerFormatsRuby.LineEndingsRuby.NumericLiteralSuffixesRuby.NumericSeparatorsRuby.SequenceFormatsRuby.SetFormatsRuby.StringFormatsRuby.TrailingCommasRuby.VariableTypeHintsRuby.bytes_formatsRuby.comment_formatsRuby.date_formatsRuby.datetime_formatsRuby.declaration_stylesRuby.dict_entry_stylesRuby.dict_formatsRuby.empty_dict_keysRuby.extensionRuby.float_formatsRuby.integer_formatsRuby.line_endingsRuby.numeric_literal_suffixesRuby.numeric_separatorsRuby.pygments_nameRuby.sequence_formatsRuby.set_formatsRuby.string_formatsRuby.supports_default_dict_key_typeRuby.supports_default_dict_value_typeRuby.supports_default_ordered_map_value_typeRuby.supports_default_sequence_element_typeRuby.supports_default_set_element_typeRuby.supports_non_printable_ascii_dict_keysRuby.trailing_commasRuby.variable_type_hints_formats
RustRust.BytesFormatsRust.CommentFormatsRust.DateFormatsRust.DatetimeFormatsRust.DeclarationStylesRust.DictEntryStylesRust.DictFormatsRust.EmptyDictKeyRust.FloatFormatsRust.IntegerFormatsRust.LineEndingsRust.NumericLiteralSuffixesRust.NumericSeparatorsRust.SequenceFormatsRust.SetFormatsRust.StringFormatsRust.TrailingCommasRust.VariableTypeHintsRust.bytes_formatsRust.comment_formatsRust.date_formatsRust.datetime_formatsRust.declaration_stylesRust.dict_entry_stylesRust.dict_formatsRust.empty_dict_keysRust.extensionRust.float_formatsRust.integer_formatsRust.line_endingsRust.numeric_literal_suffixesRust.numeric_separatorsRust.pygments_nameRust.sequence_formatsRust.set_formatsRust.string_formatsRust.supports_default_dict_key_typeRust.supports_default_dict_value_typeRust.supports_default_ordered_map_value_typeRust.supports_default_sequence_element_typeRust.supports_default_set_element_typeRust.supports_non_printable_ascii_dict_keysRust.trailing_commasRust.variable_type_hints_formats
ScalaScala.BytesFormatsScala.CommentFormatsScala.DateFormatsScala.DatetimeFormatsScala.DeclarationStylesScala.DictEntryStylesScala.DictFormatsScala.EmptyDictKeyScala.FloatFormatsScala.IntegerFormatsScala.LineEndingsScala.NumericLiteralSuffixesScala.NumericSeparatorsScala.SequenceFormatsScala.SetFormatsScala.StringFormatsScala.TrailingCommasScala.VariableTypeHintsScala.bytes_formatsScala.comment_formatsScala.date_formatsScala.datetime_formatsScala.declaration_stylesScala.dict_entry_stylesScala.dict_formatsScala.empty_dict_keysScala.extensionScala.float_formatsScala.integer_formatsScala.line_endingsScala.numeric_literal_suffixesScala.numeric_separatorsScala.pygments_nameScala.sequence_formatsScala.set_formatsScala.string_formatsScala.supports_default_dict_key_typeScala.supports_default_dict_value_typeScala.supports_default_ordered_map_value_typeScala.supports_default_sequence_element_typeScala.supports_default_set_element_typeScala.supports_non_printable_ascii_dict_keysScala.trailing_commasScala.variable_type_hints_formats
SchemeScheme.BytesFormatsScheme.CommentFormatsScheme.DateFormatsScheme.DatetimeFormatsScheme.DeclarationStylesScheme.DictEntryStylesScheme.DictFormatsScheme.EmptyDictKeyScheme.FloatFormatsScheme.IntegerFormatsScheme.LineEndingsScheme.NumericLiteralSuffixesScheme.NumericSeparatorsScheme.SequenceFormatsScheme.SetFormatsScheme.StringFormatsScheme.TrailingCommasScheme.VariableTypeHintsScheme.bytes_formatsScheme.comment_formatsScheme.date_formatsScheme.datetime_formatsScheme.declaration_stylesScheme.dict_entry_stylesScheme.dict_formatsScheme.empty_dict_keysScheme.extensionScheme.float_formatsScheme.integer_formatsScheme.line_endingsScheme.numeric_literal_suffixesScheme.numeric_separatorsScheme.pygments_nameScheme.sequence_formatsScheme.set_formatsScheme.string_formatsScheme.supports_default_dict_key_typeScheme.supports_default_dict_value_typeScheme.supports_default_ordered_map_value_typeScheme.supports_default_sequence_element_typeScheme.supports_default_set_element_typeScheme.supports_non_printable_ascii_dict_keysScheme.trailing_commasScheme.variable_type_hints_formats
SwiftSwift.BytesFormatsSwift.CommentFormatsSwift.DateFormatsSwift.DatetimeFormatsSwift.DeclarationStylesSwift.DictEntryStylesSwift.DictFormatsSwift.EmptyDictKeySwift.FloatFormatsSwift.IntegerFormatsSwift.LineEndingsSwift.NumericLiteralSuffixesSwift.NumericSeparatorsSwift.SequenceFormatsSwift.SetFormatsSwift.StringFormatsSwift.TrailingCommasSwift.VariableTypeHintsSwift.bytes_formatsSwift.comment_formatsSwift.date_formatsSwift.datetime_formatsSwift.declaration_stylesSwift.dict_entry_stylesSwift.dict_formatsSwift.empty_dict_keysSwift.extensionSwift.float_formatsSwift.integer_formatsSwift.line_endingsSwift.numeric_literal_suffixesSwift.numeric_separatorsSwift.pygments_nameSwift.sequence_formatsSwift.set_formatsSwift.string_formatsSwift.supports_default_dict_key_typeSwift.supports_default_dict_value_typeSwift.supports_default_ordered_map_value_typeSwift.supports_default_sequence_element_typeSwift.supports_default_set_element_typeSwift.supports_non_printable_ascii_dict_keysSwift.trailing_commasSwift.variable_type_hints_formats
SystemVerilogSystemVerilog.BytesFormatsSystemVerilog.CommentFormatsSystemVerilog.DateFormatsSystemVerilog.DatetimeFormatsSystemVerilog.DeclarationStylesSystemVerilog.DictEntryStylesSystemVerilog.DictFormatsSystemVerilog.EmptyDictKeySystemVerilog.FloatFormatsSystemVerilog.IntegerFormatsSystemVerilog.LineEndingsSystemVerilog.NumericLiteralSuffixesSystemVerilog.NumericSeparatorsSystemVerilog.SequenceFormatsSystemVerilog.SetFormatsSystemVerilog.StringFormatsSystemVerilog.TrailingCommasSystemVerilog.VariableTypeHintsSystemVerilog.bytes_formatsSystemVerilog.comment_formatsSystemVerilog.date_formatsSystemVerilog.datetime_formatsSystemVerilog.declaration_stylesSystemVerilog.dict_entry_stylesSystemVerilog.dict_formatsSystemVerilog.empty_dict_keysSystemVerilog.extensionSystemVerilog.float_formatsSystemVerilog.integer_formatsSystemVerilog.line_endingsSystemVerilog.numeric_literal_suffixesSystemVerilog.numeric_separatorsSystemVerilog.pygments_nameSystemVerilog.sequence_formatsSystemVerilog.set_formatsSystemVerilog.string_formatsSystemVerilog.supports_default_dict_key_typeSystemVerilog.supports_default_dict_value_typeSystemVerilog.supports_default_ordered_map_value_typeSystemVerilog.supports_default_sequence_element_typeSystemVerilog.supports_default_set_element_typeSystemVerilog.supports_non_printable_ascii_dict_keysSystemVerilog.trailing_commasSystemVerilog.variable_type_hints_formats
TomlToml.BytesFormatsToml.CommentFormatsToml.DateFormatsToml.DatetimeFormatsToml.DeclarationStylesToml.DictEntryStylesToml.DictFormatsToml.EmptyDictKeyToml.FloatFormatsToml.IntegerFormatsToml.LineEndingsToml.NumericLiteralSuffixesToml.NumericSeparatorsToml.SequenceFormatsToml.SetFormatsToml.StringFormatsToml.TrailingCommasToml.VariableTypeHintsToml.bytes_formatsToml.comment_formatsToml.date_formatsToml.datetime_formatsToml.declaration_stylesToml.dict_entry_stylesToml.dict_formatsToml.empty_dict_keysToml.extensionToml.float_formatsToml.integer_formatsToml.line_endingsToml.numeric_literal_suffixesToml.numeric_separatorsToml.pygments_nameToml.sequence_formatsToml.set_formatsToml.string_formatsToml.supports_default_dict_key_typeToml.supports_default_dict_value_typeToml.supports_default_ordered_map_value_typeToml.supports_default_sequence_element_typeToml.supports_default_set_element_typeToml.supports_non_printable_ascii_dict_keysToml.trailing_commasToml.variable_type_hints_formats
TypeScriptTypeScript.BytesFormatsTypeScript.CommentFormatsTypeScript.DateFormatsTypeScript.DatetimeFormatsTypeScript.DeclarationStylesTypeScript.DictEntryStylesTypeScript.DictFormatsTypeScript.EmptyDictKeyTypeScript.FloatFormatsTypeScript.IntegerFormatsTypeScript.LineEndingsTypeScript.NumericLiteralSuffixesTypeScript.NumericSeparatorsTypeScript.SequenceFormatsTypeScript.SetFormatsTypeScript.StringFormatsTypeScript.TrailingCommasTypeScript.VariableTypeHintsTypeScript.bytes_formatsTypeScript.comment_formatsTypeScript.date_formatsTypeScript.datetime_formatsTypeScript.declaration_stylesTypeScript.dict_entry_stylesTypeScript.dict_formatsTypeScript.empty_dict_keysTypeScript.extensionTypeScript.float_formatsTypeScript.integer_formatsTypeScript.line_endingsTypeScript.numeric_literal_suffixesTypeScript.numeric_separatorsTypeScript.pygments_nameTypeScript.sequence_formatsTypeScript.set_formatsTypeScript.string_formatsTypeScript.supports_default_dict_key_typeTypeScript.supports_default_dict_value_typeTypeScript.supports_default_ordered_map_value_typeTypeScript.supports_default_sequence_element_typeTypeScript.supports_default_set_element_typeTypeScript.supports_non_printable_ascii_dict_keysTypeScript.trailing_commasTypeScript.variable_type_hints_formats
VisualBasicVisualBasic.BytesFormatsVisualBasic.CommentFormatsVisualBasic.DateFormatsVisualBasic.DatetimeFormatsVisualBasic.DeclarationStylesVisualBasic.DictEntryStylesVisualBasic.DictFormatsVisualBasic.EmptyDictKeyVisualBasic.FloatFormatsVisualBasic.IntegerFormatsVisualBasic.LineEndingsVisualBasic.NumericLiteralSuffixesVisualBasic.NumericSeparatorsVisualBasic.SequenceFormatsVisualBasic.SetFormatsVisualBasic.StringFormatsVisualBasic.TrailingCommasVisualBasic.VariableTypeHintsVisualBasic.bytes_formatsVisualBasic.comment_formatsVisualBasic.date_formatsVisualBasic.datetime_formatsVisualBasic.declaration_stylesVisualBasic.dict_entry_stylesVisualBasic.dict_formatsVisualBasic.empty_dict_keysVisualBasic.extensionVisualBasic.float_formatsVisualBasic.integer_formatsVisualBasic.line_endingsVisualBasic.numeric_literal_suffixesVisualBasic.numeric_separatorsVisualBasic.pygments_nameVisualBasic.sequence_formatsVisualBasic.set_formatsVisualBasic.string_formatsVisualBasic.supports_default_dict_key_typeVisualBasic.supports_default_dict_value_typeVisualBasic.supports_default_ordered_map_value_typeVisualBasic.supports_default_sequence_element_typeVisualBasic.supports_default_set_element_typeVisualBasic.supports_non_printable_ascii_dict_keysVisualBasic.trailing_commasVisualBasic.variable_type_hints_formats
YamlYaml.BytesFormatsYaml.CommentFormatsYaml.DateFormatsYaml.DatetimeFormatsYaml.DeclarationStylesYaml.DictEntryStylesYaml.DictFormatsYaml.EmptyDictKeyYaml.FloatFormatsYaml.IntegerFormatsYaml.LineEndingsYaml.NumericLiteralSuffixesYaml.NumericSeparatorsYaml.SequenceFormatsYaml.SetFormatsYaml.StringFormatsYaml.TrailingCommasYaml.VariableTypeHintsYaml.bytes_formatsYaml.comment_formatsYaml.date_formatsYaml.datetime_formatsYaml.declaration_stylesYaml.dict_entry_stylesYaml.dict_formatsYaml.empty_dict_keysYaml.extensionYaml.float_formatsYaml.integer_formatsYaml.line_endingsYaml.numeric_literal_suffixesYaml.numeric_separatorsYaml.pygments_nameYaml.sequence_formatsYaml.set_formatsYaml.string_formatsYaml.supports_default_dict_key_typeYaml.supports_default_dict_value_typeYaml.supports_default_ordered_map_value_typeYaml.supports_default_sequence_element_typeYaml.supports_default_set_element_typeYaml.supports_non_printable_ascii_dict_keysYaml.trailing_commasYaml.variable_type_hints_formats
ZigZig.BytesFormatsZig.CommentFormatsZig.DateFormatsZig.DatetimeFormatsZig.DeclarationStylesZig.DictEntryStylesZig.DictFormatsZig.EmptyDictKeyZig.FloatFormatsZig.IntegerFormatsZig.LineEndingsZig.NumericLiteralSuffixesZig.NumericSeparatorsZig.SequenceFormatsZig.SetFormatsZig.StringFormatsZig.TrailingCommasZig.VariableTypeHintsZig.bytes_formatsZig.comment_formatsZig.date_formatsZig.datetime_formatsZig.declaration_stylesZig.dict_entry_stylesZig.dict_formatsZig.empty_dict_keysZig.extensionZig.float_formatsZig.integer_formatsZig.line_endingsZig.numeric_literal_suffixesZig.numeric_separatorsZig.pygments_nameZig.sequence_formatsZig.set_formatsZig.string_formatsZig.supports_default_dict_key_typeZig.supports_default_dict_value_typeZig.supports_default_ordered_map_value_typeZig.supports_default_sequence_element_typeZig.supports_default_set_element_typeZig.supports_non_printable_ascii_dict_keysZig.trailing_commasZig.variable_type_hints_formats
- Release Process
- Changelog
- Next
- 2026.03.30
- 2026.03.29
- 2026.03.26.2
- 2026.03.26.1
- 2026.03.26
- 2026.03.25
- 2026.03.23
- 2026.03.22.1
- 2026.03.22
- 2026.03.21
- 2026.03.20.3
- 2026.03.20.2
- 2026.03.20.1
- 2026.03.20
- 2026.03.19.1
- 2026.03.19
- 2026.03.18
- 2026.03.17.2
- 2026.03.17.1
- 2026.03.17
- 2026.03.16.2
- 2026.03.16.1
- 2026.03.16
- 2026.03.15.2
- 2026.03.15.1
- 2026.03.15
- 2026.03.14
- 2026.03.13
- Contributing to literalizer