зеркало из https://github.com/mozilla/gecko-dev.git
82 строки
2.4 KiB
TOML
82 строки
2.4 KiB
TOML
# Copyright 2017 Marcus Heese
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
verbose = false
|
|
disable_all_formatting = false
|
|
skip_children = false
|
|
max_width = 200
|
|
error_on_line_overflow = true
|
|
tab_spaces = 2
|
|
fn_call_width = 200
|
|
struct_lit_width = 18
|
|
struct_variant_width = 35
|
|
force_explicit_abi = true
|
|
newline_style = "Unix"
|
|
fn_brace_style = "SameLineWhere"
|
|
item_brace_style = "SameLineWhere"
|
|
control_style = "Rfc"
|
|
control_brace_style = "AlwaysSameLine"
|
|
impl_empty_single_line = true
|
|
trailing_comma = "Vertical"
|
|
fn_empty_single_line = true
|
|
fn_single_line = false
|
|
fn_return_indent = "WithArgs"
|
|
fn_args_paren_newline = false
|
|
fn_args_density = "Tall"
|
|
fn_args_layout = "Block"
|
|
array_layout = "Block"
|
|
array_width = 60
|
|
type_punctuation_density = "Wide"
|
|
where_style = "Rfc"
|
|
where_density = "CompressedIfEmpty"
|
|
where_layout = "Vertical"
|
|
where_pred_indent = "Visual"
|
|
generics_indent = "Block"
|
|
struct_lit_style = "Block"
|
|
struct_lit_multiline_style = "PreferSingle"
|
|
fn_call_style = "Block"
|
|
report_todo = "Never"
|
|
report_fixme = "Never"
|
|
chain_indent = "Block"
|
|
chain_one_line_max = 100
|
|
chain_split_single_child = false
|
|
reorder_imports = false
|
|
reorder_imports_in_group = false
|
|
reorder_imported_names = false
|
|
single_line_if_else_max_width = 50
|
|
format_strings = false
|
|
force_format_strings = false
|
|
take_source_hints = false
|
|
hard_tabs = false
|
|
wrap_comments = false
|
|
comment_width = 80
|
|
normalize_comments = false
|
|
wrap_match_arms = true
|
|
match_block_trailing_comma = false
|
|
indent_match_arms = true
|
|
closure_block_indent_threshold = 7
|
|
space_before_type_annotation = false
|
|
space_after_type_annotation_colon = true
|
|
space_before_struct_lit_field_colon = false
|
|
space_after_struct_lit_field_colon = true
|
|
space_before_bound = false
|
|
space_after_bound_colon = true
|
|
spaces_around_ranges = false
|
|
spaces_within_angle_brackets = false
|
|
spaces_within_square_brackets = false
|
|
spaces_within_parens = false
|
|
use_try_shorthand = false
|
|
write_mode = "Replace"
|
|
condense_wildcard_suffixes = false
|
|
combine_control_expr = true
|