1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
| [sqlfluff] templater = raw dialect = mysql large_file_skip_byte_limit = 0
verbose = 1
ignore_unfixable = True
max_line_length = 0
trailing_comments = before rules = AL01,AL02,AL03,AL04,AL05,AL08,AL09,AM01,AM02,AM03,AM05,AM06,CP01,CP03,CP04,CP05,CV01,CV02,CV03,CV05,CV06,CV07,CV08,CV10,CV11,CV12,LT02,LT03,LT04,LT05,LT06,LT07,LT08,LT09,LT10,LT11,LT12,LT13,LT15,RF01,RF02,RF03,RF04,RF05,RF06,ST01,ST02,ST03,ST04,ST05,ST06,ST07,ST08,ST09,ST10,ST11
[sqlfluff:indentation] indent_unit = tab tab_space_size = 2 indented_joins = False indented_ctes = False indented_using_on = False indented_on_contents = False indented_then = False indented_then_contents = False allow_implicit_indents = True template_blocks_indent = False
[sqlfluff:layout:type:alias_expression] spacing_before = align
[sqlfluff:layout:type:comparison_operator] line_position = leading [sqlfluff:layout:type:binary_operator] line_position = leading [sqlfluff:layout:type:select_clause] line_position = leading spacing_before = alone
[sqlfluff:layout:type:function_name] spacing_before = single:inline
[sqlfluff:layout:type:comma] line_position = leading
[sqlfluff:layout:type:where_clause] keyword_line_position = leading
[sqlfluff:layout:type:partitionby_clause] keyword_line_position = leading line_position = inline
[sqlfluff:layout:type:orderby_clause] keyword_line_position = leading line_position = inline
[sqlfluff:layout:type:groupby_clause] keyword_line_position = leading line_position = inline
[sqlfluff:rules:aliasing.table] aliasing = explicit
[sqlfluff:rules:aliasing.column] aliasing = explicit
[sqlfluff:rules:aliasing.unused] alias_case_check = case_insensitive
[sqlfluff:rules:ambiguous.join] fully_qualify_join_types = inner
[sqlfluff:rules:ambiguous.column_references] group_by_and_order_by_style = explicit
[sqlfluff:rules:capitalisation.keywords] capitalisation_policy = upper
[sqlfluff:rules:capitalisation.functions] extended_capitalisation_policy = upper
[sqlfluff:rules:capitalisation.literals] capitalisation_policy = upper
[sqlfluff:rules:capitalisation.types] extended_capitalisation_policy = upper
[sqlfluff:rules:convention.not_equal] preferred_not_equal_style = c_style
[sqlfluff:rules:convention.select_trailing_comma] select_clause_trailing_comma = forbid
[sqlfluff:rules:convention.terminator] multiline_newline = True require_final_semicolon = True
[sqlfluff:rules:convention.quoted_literals] force_enable = False preferred_quoted_literal_style = single_quotes
[sqlfluff:rules:convention.casting_style] preferred_type_casting_style = cast
[sqlfluff:rules:layout.long_lines] ignore_comment_clauses = True ignore_comment_lines = True
[sqlfluff:rules:layout.select_targets] wildcard_policy = multiple
[sqlfluff:rules:layout.newlines] maximum_empty_lines_between_statements = 1 maximum_empty_lines_inside_statements = 1
[sqlfluff:rules:references.from] force_enable = False
[sqlfluff:rules:references.qualification] subqueries_ignore_external_references = True
[sqlfluff:rules:references.consistent] force_enable = False single_table_references = consistent
[sqlfluff:rules:references.keywords] quoted_identifiers_policy = none unquoted_identifiers_policy = all
[sqlfluff:rules:references.special_chars] allow_space_in_identifier = False quoted_identifiers_policy = none unquoted_identifiers_policy = all
[sqlfluff:rules:references.quoting] case_sensitive = True prefer_quoted_identifiers = False prefer_quoted_keywords = True
[sqlfluff:rules:structure.subquery] forbid_subquery_in = both
[sqlfluff:rules:structure.join_condition_order] preferred_first_table_in_join_clause = earlier
|