├── settings.gradle ├── .gitignore ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitattributes ├── gradlew.bat ├── src └── main │ └── java │ └── net │ └── jacobpeterson │ └── randomprojects │ └── NicoleJSONFilter.java ├── gradlew └── .editorconfig /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'NicoleJSONFilter' 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | build/ 3 | .gradle/ 4 | .settings 5 | .DS_Store 6 | .idea/ 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Petersoj/NicoleJSONFilter/main/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # https://www.gitattributes.io/api/java 2 | # 3 | # Handle line endings automatically for files detected as text 4 | # and leave all files detected as binary untouched. 5 | * text=auto 6 | 7 | # 8 | # The above will handle all files NOT found below 9 | # 10 | # These files are text and should be normalized (Convert crlf => lf) 11 | *.css text 12 | *.df text 13 | *.htm text 14 | *.html text 15 | *.java text 16 | *.js text 17 | *.json text 18 | *.jsp text 19 | *.jspf text 20 | *.jspx text 21 | *.properties text 22 | *.sh text 23 | *.tld text 24 | *.txt text 25 | *.tag text 26 | *.tagx text 27 | *.xml text 28 | *.yml text 29 | 30 | # Declare files that will always have CRLF line endings on checkout. 31 | *.sln text eol=crlf 32 | *.bat text eol=crlf 33 | 34 | # These files are binary and should be left untouched 35 | # (binary is a macro for -text -diff) 36 | *.class binary 37 | *.dll binary 38 | *.ear binary 39 | *.gif binary 40 | *.ico binary 41 | *.jar binary 42 | *.jpg binary 43 | *.jpeg binary 44 | *.png binary 45 | *.so binary 46 | *.war binary 47 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /src/main/java/net/jacobpeterson/randomprojects/NicoleJSONFilter.java: -------------------------------------------------------------------------------- 1 | package net.jacobpeterson.randomprojects; 2 | 3 | import com.google.gson.Gson; 4 | import com.google.gson.JsonElement; 5 | import com.google.gson.JsonObject; 6 | import com.google.gson.stream.JsonReader; 7 | 8 | import javax.swing.JButton; 9 | import javax.swing.JFileChooser; 10 | import javax.swing.JFrame; 11 | import javax.swing.JScrollPane; 12 | import javax.swing.JTextArea; 13 | import javax.swing.SwingUtilities; 14 | import java.awt.Dimension; 15 | import java.awt.GridLayout; 16 | import java.io.File; 17 | import java.io.FileNotFoundException; 18 | import java.io.FileReader; 19 | import java.util.ArrayList; 20 | import java.util.Arrays; 21 | import java.util.List; 22 | 23 | public class NicoleJSONFilter { 24 | 25 | public static JTextArea foundArea; 26 | 27 | public static void main(String[] args) { 28 | JFrame jFrame = new JFrame("Nicole JSON Filter"); 29 | 30 | JTextArea ptrackInputArea = new JTextArea("\n\n...\n"); 31 | ptrackInputArea.setMinimumSize(new Dimension(100, 100)); 32 | ptrackInputArea.setEditable(true); 33 | 34 | JButton analyzeButton = new JButton("Analyze"); 35 | analyzeButton.addActionListener(e -> SwingUtilities.invokeLater(() -> { 36 | JFileChooser fileChooser = new JFileChooser(); 37 | fileChooser.showOpenDialog(jFrame); 38 | if (fileChooser.getSelectedFile() != null) { 39 | try { 40 | analyze(ptrackInputArea.getText(), fileChooser.getSelectedFile()); 41 | } catch (FileNotFoundException ex) { 42 | throw new RuntimeException(ex); 43 | } 44 | } 45 | })); 46 | 47 | foundArea = new JTextArea(); 48 | 49 | jFrame.setLayout(new GridLayout(3, 1)); 50 | jFrame.add(new JScrollPane(ptrackInputArea, 51 | JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED)); 52 | jFrame.add(analyzeButton); 53 | jFrame.add(new JScrollPane(foundArea, 54 | JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED)); 55 | jFrame.pack(); 56 | jFrame.setSize(350, 300); 57 | jFrame.setMinimumSize(new Dimension(350, 300)); 58 | jFrame.setLocationRelativeTo(null); // Centers the frame 59 | jFrame.setVisible(true); 60 | } 61 | 62 | public static void analyze(String textAreaText, File file) throws FileNotFoundException { 63 | String[] lines = textAreaText.split("\n"); 64 | List ptracksToFilter = new ArrayList<>(Arrays.asList(lines)); 65 | 66 | StringBuilder stringBuilder = new StringBuilder("Found in IDs:\n"); 67 | JsonReader jsonReader = new JsonReader(new FileReader(file)); 68 | JsonObject object = new Gson().fromJson(jsonReader, JsonObject.class); 69 | for (JsonElement scheduleElement : object.getAsJsonArray("schedule")) { 70 | JsonObject scheduleObject = scheduleElement.getAsJsonObject(); 71 | 72 | int ptrackExistCount = 0; 73 | for (JsonElement idRefs : scheduleObject.getAsJsonArray("category_id_refs")) { 74 | for (String filterPTrack : ptracksToFilter) { 75 | if (idRefs.getAsJsonPrimitive().getAsString().equals(filterPTrack)) { 76 | ptrackExistCount++; 77 | } 78 | } 79 | } 80 | 81 | if (ptrackExistCount == ptracksToFilter.size()) { 82 | stringBuilder.append(scheduleObject.getAsJsonPrimitive("id").getAsString()).append("\n"); 83 | } 84 | } 85 | 86 | foundArea.setText(stringBuilder.toString()); 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # 4 | # Copyright © 2015-2021 the original authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | # 21 | # Gradle start up script for POSIX generated by Gradle. 22 | # 23 | # Important for running: 24 | # 25 | # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is 26 | # noncompliant, but you have some other compliant shell such as ksh or 27 | # bash, then to run this script, type that shell name before the whole 28 | # command line, like: 29 | # 30 | # ksh Gradle 31 | # 32 | # Busybox and similar reduced shells will NOT work, because this script 33 | # requires all of these POSIX shell features: 34 | # * functions; 35 | # * expansions «$var», «${var}», «${var:-default}», «${var+SET}», 36 | # «${var#prefix}», «${var%suffix}», and «$( cmd )»; 37 | # * compound commands having a testable exit status, especially «case»; 38 | # * various built-in commands including «command», «set», and «ulimit». 39 | # 40 | # Important for patching: 41 | # 42 | # (2) This script targets any POSIX shell, so it avoids extensions provided 43 | # by Bash, Ksh, etc; in particular arrays are avoided. 44 | # 45 | # The "traditional" practice of packing multiple parameters into a 46 | # space-separated string is a well documented source of bugs and security 47 | # problems, so this is (mostly) avoided, by progressively accumulating 48 | # options in "$@", and eventually passing that to Java. 49 | # 50 | # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, 51 | # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; 52 | # see the in-line comments for details. 53 | # 54 | # There are tweaks for specific operating systems such as AIX, CygWin, 55 | # Darwin, MinGW, and NonStop. 56 | # 57 | # (3) This script is generated from the Groovy template 58 | # https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 59 | # within the Gradle project. 60 | # 61 | # You can find Gradle at https://github.com/gradle/gradle/. 62 | # 63 | ############################################################################## 64 | 65 | # Attempt to set APP_HOME 66 | 67 | # Resolve links: $0 may be a link 68 | app_path=$0 69 | 70 | # Need this for daisy-chained symlinks. 71 | while 72 | APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path 73 | [ -h "$app_path" ] 74 | do 75 | ls=$( ls -ld "$app_path" ) 76 | link=${ls#*' -> '} 77 | case $link in #( 78 | /*) app_path=$link ;; #( 79 | *) app_path=$APP_HOME$link ;; 80 | esac 81 | done 82 | 83 | APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit 84 | 85 | APP_NAME="Gradle" 86 | APP_BASE_NAME=${0##*/} 87 | 88 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 89 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 90 | 91 | # Use the maximum available, or set MAX_FD != -1 to use that value. 92 | MAX_FD=maximum 93 | 94 | warn () { 95 | echo "$*" 96 | } >&2 97 | 98 | die () { 99 | echo 100 | echo "$*" 101 | echo 102 | exit 1 103 | } >&2 104 | 105 | # OS specific support (must be 'true' or 'false'). 106 | cygwin=false 107 | msys=false 108 | darwin=false 109 | nonstop=false 110 | case "$( uname )" in #( 111 | CYGWIN* ) cygwin=true ;; #( 112 | Darwin* ) darwin=true ;; #( 113 | MSYS* | MINGW* ) msys=true ;; #( 114 | NONSTOP* ) nonstop=true ;; 115 | esac 116 | 117 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 118 | 119 | 120 | # Determine the Java command to use to start the JVM. 121 | if [ -n "$JAVA_HOME" ] ; then 122 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 123 | # IBM's JDK on AIX uses strange locations for the executables 124 | JAVACMD=$JAVA_HOME/jre/sh/java 125 | else 126 | JAVACMD=$JAVA_HOME/bin/java 127 | fi 128 | if [ ! -x "$JAVACMD" ] ; then 129 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 130 | 131 | Please set the JAVA_HOME variable in your environment to match the 132 | location of your Java installation." 133 | fi 134 | else 135 | JAVACMD=java 136 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 137 | 138 | Please set the JAVA_HOME variable in your environment to match the 139 | location of your Java installation." 140 | fi 141 | 142 | # Increase the maximum file descriptors if we can. 143 | if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 144 | case $MAX_FD in #( 145 | max*) 146 | MAX_FD=$( ulimit -H -n ) || 147 | warn "Could not query maximum file descriptor limit" 148 | esac 149 | case $MAX_FD in #( 150 | '' | soft) :;; #( 151 | *) 152 | ulimit -n "$MAX_FD" || 153 | warn "Could not set maximum file descriptor limit to $MAX_FD" 154 | esac 155 | fi 156 | 157 | # Collect all arguments for the java command, stacking in reverse order: 158 | # * args from the command line 159 | # * the main class name 160 | # * -classpath 161 | # * -D...appname settings 162 | # * --module-path (only if needed) 163 | # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. 164 | 165 | # For Cygwin or MSYS, switch paths to Windows format before running java 166 | if "$cygwin" || "$msys" ; then 167 | APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) 168 | CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) 169 | 170 | JAVACMD=$( cygpath --unix "$JAVACMD" ) 171 | 172 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 173 | for arg do 174 | if 175 | case $arg in #( 176 | -*) false ;; # don't mess with options #( 177 | /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath 178 | [ -e "$t" ] ;; #( 179 | *) false ;; 180 | esac 181 | then 182 | arg=$( cygpath --path --ignore --mixed "$arg" ) 183 | fi 184 | # Roll the args list around exactly as many times as the number of 185 | # args, so each arg winds up back in the position where it started, but 186 | # possibly modified. 187 | # 188 | # NB: a `for` loop captures its iteration list before it begins, so 189 | # changing the positional parameters here affects neither the number of 190 | # iterations, nor the values presented in `arg`. 191 | shift # remove old arg 192 | set -- "$@" "$arg" # push replacement arg 193 | done 194 | fi 195 | 196 | # Collect all arguments for the java command; 197 | # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of 198 | # shell script including quotes and variable substitutions, so put them in 199 | # double quotes to make sure that they get re-expanded; and 200 | # * put everything else in single quotes, so that it's not re-expanded. 201 | 202 | set -- \ 203 | "-Dorg.gradle.appname=$APP_BASE_NAME" \ 204 | -classpath "$CLASSPATH" \ 205 | org.gradle.wrapper.GradleWrapperMain \ 206 | "$@" 207 | 208 | # Use "xargs" to parse quoted args. 209 | # 210 | # With -n1 it outputs one arg per line, with the quotes and backslashes removed. 211 | # 212 | # In Bash we could simply go: 213 | # 214 | # readarray ARGS < <( xargs -n1 <<<"$var" ) && 215 | # set -- "${ARGS[@]}" "$@" 216 | # 217 | # but POSIX shell has neither arrays nor command substitution, so instead we 218 | # post-process each arg (as a line of input to sed) to backslash-escape any 219 | # character that might be a shell metacharacter, then use eval to reverse 220 | # that process (while maintaining the separation between arguments), and wrap 221 | # the whole thing up as a single "set" statement. 222 | # 223 | # This will of course break if any of these variables contains a newline or 224 | # an unmatched quote. 225 | # 226 | 227 | eval "set -- $( 228 | printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | 229 | xargs -n1 | 230 | sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | 231 | tr '\n' ' ' 232 | )" '"$@"' 233 | 234 | exec "$JAVACMD" "$@" 235 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | charset = utf-8 3 | end_of_line = lf 4 | indent_size = 4 5 | indent_style = space 6 | insert_final_newline = true 7 | max_line_length = 120 8 | tab_width = 4 9 | ij_continuation_indent_size = 8 10 | ij_formatter_off_tag = @formatter:off 11 | ij_formatter_on_tag = @formatter:on 12 | ij_formatter_tags_enabled = true 13 | ij_smart_tabs = false 14 | ij_wrap_on_typing = false 15 | 16 | [*.java] 17 | ij_java_align_consecutive_assignments = false 18 | ij_java_align_consecutive_variable_declarations = false 19 | ij_java_align_group_field_declarations = false 20 | ij_java_align_multiline_annotation_parameters = false 21 | ij_java_align_multiline_array_initializer_expression = false 22 | ij_java_align_multiline_assignment = false 23 | ij_java_align_multiline_binary_operation = false 24 | ij_java_align_multiline_chained_methods = false 25 | ij_java_align_multiline_extends_list = false 26 | ij_java_align_multiline_for = false 27 | ij_java_align_multiline_method_parentheses = false 28 | ij_java_align_multiline_parameters = false 29 | ij_java_align_multiline_parameters_in_calls = false 30 | ij_java_align_multiline_parenthesized_expression = false 31 | ij_java_align_multiline_resources = false 32 | ij_java_align_multiline_ternary_operation = false 33 | ij_java_align_multiline_throws_list = false 34 | ij_java_align_subsequent_simple_methods = false 35 | ij_java_align_throws_keyword = false 36 | ij_java_annotation_parameter_wrap = normal 37 | ij_java_array_initializer_new_line_after_left_brace = false 38 | ij_java_array_initializer_right_brace_on_new_line = false 39 | ij_java_array_initializer_wrap = normal 40 | ij_java_assert_statement_colon_on_next_line = false 41 | ij_java_assert_statement_wrap = normal 42 | ij_java_assignment_wrap = normal 43 | ij_java_binary_operation_sign_on_next_line = false 44 | ij_java_binary_operation_wrap = normal 45 | ij_java_blank_lines_after_anonymous_class_header = 0 46 | ij_java_blank_lines_after_class_header = 1 47 | ij_java_blank_lines_after_imports = 1 48 | ij_java_blank_lines_after_package = 1 49 | ij_java_blank_lines_around_class = 1 50 | ij_java_blank_lines_around_field = 0 51 | ij_java_blank_lines_around_field_in_interface = 0 52 | ij_java_blank_lines_around_initializer = 1 53 | ij_java_blank_lines_around_method = 1 54 | ij_java_blank_lines_around_method_in_interface = 1 55 | ij_java_blank_lines_before_class_end = 0 56 | ij_java_blank_lines_before_imports = 1 57 | ij_java_blank_lines_before_method_body = 0 58 | ij_java_blank_lines_before_package = 0 59 | ij_java_block_brace_style = end_of_line 60 | ij_java_block_comment_at_first_column = true 61 | ij_java_call_parameters_new_line_after_left_paren = false 62 | ij_java_call_parameters_right_paren_on_new_line = false 63 | ij_java_call_parameters_wrap = normal 64 | ij_java_case_statement_on_separate_line = true 65 | ij_java_catch_on_new_line = false 66 | ij_java_class_annotation_wrap = split_into_lines 67 | ij_java_class_brace_style = end_of_line 68 | ij_java_class_count_to_use_import_on_demand = 20 69 | ij_java_class_names_in_javadoc = 1 70 | ij_java_do_not_indent_top_level_class_members = false 71 | ij_java_do_not_wrap_after_single_annotation = false 72 | ij_java_do_while_brace_force = always 73 | ij_java_doc_add_blank_line_after_description = true 74 | ij_java_doc_add_blank_line_after_param_comments = true 75 | ij_java_doc_add_blank_line_after_return = true 76 | ij_java_doc_add_p_tag_on_empty_lines = true 77 | ij_java_doc_align_exception_comments = true 78 | ij_java_doc_align_param_comments = true 79 | ij_java_doc_do_not_wrap_if_one_line = true 80 | ij_java_doc_enable_formatting = true 81 | ij_java_doc_enable_leading_asterisks = true 82 | ij_java_doc_indent_on_continuation = false 83 | ij_java_doc_keep_empty_lines = true 84 | ij_java_doc_keep_empty_parameter_tag = true 85 | ij_java_doc_keep_empty_return_tag = true 86 | ij_java_doc_keep_empty_throws_tag = true 87 | ij_java_doc_keep_invalid_tags = true 88 | ij_java_doc_param_description_on_new_line = false 89 | ij_java_doc_preserve_line_breaks = false 90 | ij_java_doc_use_throws_not_exception_tag = true 91 | ij_java_else_on_new_line = false 92 | ij_java_enum_constants_wrap = normal 93 | ij_java_extends_keyword_wrap = normal 94 | ij_java_extends_list_wrap = normal 95 | ij_java_field_annotation_wrap = split_into_lines 96 | ij_java_finally_on_new_line = false 97 | ij_java_for_brace_force = always 98 | ij_java_for_statement_new_line_after_left_paren = false 99 | ij_java_for_statement_right_paren_on_new_line = false 100 | ij_java_for_statement_wrap = normal 101 | ij_java_generate_final_locals = false 102 | ij_java_generate_final_parameters = false 103 | ij_java_if_brace_force = always 104 | ij_java_imports_layout = *,|,javax.**,java.**,|,$* 105 | ij_java_indent_case_from_switch = true 106 | ij_java_insert_inner_class_imports = false 107 | ij_java_insert_override_annotation = true 108 | ij_java_keep_blank_lines_before_right_brace = 1 109 | ij_java_keep_blank_lines_between_package_declaration_and_header = 1 110 | ij_java_keep_blank_lines_in_code = 1 111 | ij_java_keep_blank_lines_in_declarations = 1 112 | ij_java_keep_control_statement_in_one_line = true 113 | ij_java_keep_first_column_comment = true 114 | ij_java_keep_indents_on_empty_lines = false 115 | ij_java_keep_line_breaks = true 116 | ij_java_keep_multiple_expressions_in_one_line = true 117 | ij_java_keep_simple_blocks_in_one_line = true 118 | ij_java_keep_simple_classes_in_one_line = true 119 | ij_java_keep_simple_lambdas_in_one_line = true 120 | ij_java_keep_simple_methods_in_one_line = true 121 | ij_java_lambda_brace_style = end_of_line 122 | ij_java_layout_static_imports_separately = true 123 | ij_java_line_comment_add_space = true 124 | ij_java_line_comment_at_first_column = false 125 | ij_java_method_annotation_wrap = split_into_lines 126 | ij_java_method_brace_style = end_of_line 127 | ij_java_method_call_chain_wrap = normal 128 | ij_java_method_parameters_new_line_after_left_paren = false 129 | ij_java_method_parameters_right_paren_on_new_line = false 130 | ij_java_method_parameters_wrap = normal 131 | ij_java_modifier_list_wrap = false 132 | ij_java_names_count_to_use_import_on_demand = 20 133 | ij_java_parameter_annotation_wrap = normal 134 | ij_java_parentheses_expression_new_line_after_left_paren = false 135 | ij_java_parentheses_expression_right_paren_on_new_line = false 136 | ij_java_place_assignment_sign_on_next_line = false 137 | ij_java_prefer_longer_names = true 138 | ij_java_prefer_parameters_wrap = false 139 | ij_java_repeat_synchronized = true 140 | ij_java_replace_instanceof_and_cast = false 141 | ij_java_replace_null_check = true 142 | ij_java_replace_sum_lambda_with_method_ref = true 143 | ij_java_resource_list_new_line_after_left_paren = false 144 | ij_java_resource_list_right_paren_on_new_line = false 145 | ij_java_resource_list_wrap = normal 146 | ij_java_space_after_closing_angle_bracket_in_type_argument = false 147 | ij_java_space_after_colon = true 148 | ij_java_space_after_comma = true 149 | ij_java_space_after_comma_in_type_arguments = true 150 | ij_java_space_after_for_semicolon = true 151 | ij_java_space_after_quest = true 152 | ij_java_space_after_type_cast = true 153 | ij_java_space_before_annotation_array_initializer_left_brace = false 154 | ij_java_space_before_annotation_parameter_list = false 155 | ij_java_space_before_array_initializer_left_brace = false 156 | ij_java_space_before_catch_keyword = true 157 | ij_java_space_before_catch_left_brace = true 158 | ij_java_space_before_catch_parentheses = true 159 | ij_java_space_before_class_left_brace = true 160 | ij_java_space_before_colon = true 161 | ij_java_space_before_colon_in_foreach = true 162 | ij_java_space_before_comma = false 163 | ij_java_space_before_do_left_brace = true 164 | ij_java_space_before_else_keyword = true 165 | ij_java_space_before_else_left_brace = true 166 | ij_java_space_before_finally_keyword = true 167 | ij_java_space_before_finally_left_brace = true 168 | ij_java_space_before_for_left_brace = true 169 | ij_java_space_before_for_parentheses = true 170 | ij_java_space_before_for_semicolon = false 171 | ij_java_space_before_if_left_brace = true 172 | ij_java_space_before_if_parentheses = true 173 | ij_java_space_before_method_call_parentheses = false 174 | ij_java_space_before_method_left_brace = true 175 | ij_java_space_before_method_parentheses = false 176 | ij_java_space_before_opening_angle_bracket_in_type_parameter = false 177 | ij_java_space_before_quest = true 178 | ij_java_space_before_switch_left_brace = true 179 | ij_java_space_before_switch_parentheses = true 180 | ij_java_space_before_synchronized_left_brace = true 181 | ij_java_space_before_synchronized_parentheses = true 182 | ij_java_space_before_try_left_brace = true 183 | ij_java_space_before_try_parentheses = true 184 | ij_java_space_before_type_parameter_list = false 185 | ij_java_space_before_while_keyword = true 186 | ij_java_space_before_while_left_brace = true 187 | ij_java_space_before_while_parentheses = true 188 | ij_java_space_inside_one_line_enum_braces = false 189 | ij_java_space_within_empty_array_initializer_braces = false 190 | ij_java_space_within_empty_method_call_parentheses = false 191 | ij_java_space_within_empty_method_parentheses = false 192 | ij_java_spaces_around_additive_operators = true 193 | ij_java_spaces_around_assignment_operators = true 194 | ij_java_spaces_around_bitwise_operators = true 195 | ij_java_spaces_around_equality_operators = true 196 | ij_java_spaces_around_lambda_arrow = true 197 | ij_java_spaces_around_logical_operators = true 198 | ij_java_spaces_around_method_ref_dbl_colon = false 199 | ij_java_spaces_around_multiplicative_operators = true 200 | ij_java_spaces_around_relational_operators = true 201 | ij_java_spaces_around_shift_operators = true 202 | ij_java_spaces_around_type_bounds_in_type_parameters = true 203 | ij_java_spaces_around_unary_operator = false 204 | ij_java_spaces_within_angle_brackets = false 205 | ij_java_spaces_within_annotation_parentheses = false 206 | ij_java_spaces_within_array_initializer_braces = false 207 | ij_java_spaces_within_braces = false 208 | ij_java_spaces_within_brackets = false 209 | ij_java_spaces_within_cast_parentheses = false 210 | ij_java_spaces_within_catch_parentheses = false 211 | ij_java_spaces_within_for_parentheses = false 212 | ij_java_spaces_within_if_parentheses = false 213 | ij_java_spaces_within_method_call_parentheses = false 214 | ij_java_spaces_within_method_parentheses = false 215 | ij_java_spaces_within_parentheses = false 216 | ij_java_spaces_within_switch_parentheses = false 217 | ij_java_spaces_within_synchronized_parentheses = false 218 | ij_java_spaces_within_try_parentheses = false 219 | ij_java_spaces_within_while_parentheses = false 220 | ij_java_special_else_if_treatment = true 221 | ij_java_subclass_name_suffix = Impl 222 | ij_java_ternary_operation_signs_on_next_line = false 223 | ij_java_ternary_operation_wrap = normal 224 | ij_java_test_name_suffix = Test 225 | ij_java_throws_keyword_wrap = normal 226 | ij_java_throws_list_wrap = normal 227 | ij_java_use_external_annotations = false 228 | ij_java_use_fq_class_names = false 229 | ij_java_use_single_class_imports = true 230 | ij_java_variable_annotation_wrap = normal 231 | ij_java_visibility = public 232 | ij_java_while_brace_force = always 233 | ij_java_while_on_new_line = false 234 | ij_java_wrap_comments = true 235 | ij_java_wrap_first_method_in_call_chain = false 236 | ij_java_wrap_long_lines = true 237 | 238 | [*.json] 239 | indent_size = 2 240 | ij_json_keep_blank_lines_in_code = 0 241 | ij_json_keep_indents_on_empty_lines = false 242 | ij_json_keep_line_breaks = true 243 | ij_json_space_after_colon = true 244 | ij_json_space_after_comma = true 245 | ij_json_space_before_colon = true 246 | ij_json_space_before_comma = false 247 | ij_json_spaces_within_braces = false 248 | ij_json_spaces_within_brackets = false 249 | ij_json_wrap_long_lines = false 250 | 251 | [*.properties] 252 | ij_properties_align_group_field_declarations = false 253 | 254 | [*.scala] 255 | indent_size = 2 256 | tab_width = 2 257 | ij_continuation_indent_size = 2 258 | ij_scala_align_composite_pattern = true 259 | ij_scala_align_extends_with = 0 260 | ij_scala_align_group_field_declarations = false 261 | ij_scala_align_if_else = false 262 | ij_scala_align_in_columns_case_branch = false 263 | ij_scala_align_multiline_binary_operation = false 264 | ij_scala_align_multiline_chained_methods = false 265 | ij_scala_align_multiline_for = true 266 | ij_scala_align_multiline_parameters = true 267 | ij_scala_align_multiline_parameters_in_calls = false 268 | ij_scala_align_multiline_parenthesized_expression = false 269 | ij_scala_align_tuple_elements = false 270 | ij_scala_align_types_in_multiline_declarations = false 271 | ij_scala_all_other_imports = all other imports 272 | ij_scala_alternate_continuation_indent_for_params = 4 273 | ij_scala_binary_operation_wrap = off 274 | ij_scala_blank_line = _______ blank line _______ 275 | ij_scala_blank_lines_after_anonymous_class_header = 0 276 | ij_scala_blank_lines_after_class_header = 0 277 | ij_scala_blank_lines_after_imports = 1 278 | ij_scala_blank_lines_after_package = 1 279 | ij_scala_blank_lines_around_class = 1 280 | ij_scala_blank_lines_around_field = 0 281 | ij_scala_blank_lines_around_field_in_inner_scopes = 0 282 | ij_scala_blank_lines_around_field_in_interface = 0 283 | ij_scala_blank_lines_around_method = 1 284 | ij_scala_blank_lines_around_method_in_inner_scopes = 1 285 | ij_scala_blank_lines_around_method_in_interface = 1 286 | ij_scala_blank_lines_before_imports = 1 287 | ij_scala_blank_lines_before_method_body = 0 288 | ij_scala_blank_lines_before_package = 0 289 | ij_scala_block_brace_style = end_of_line 290 | ij_scala_block_comment_at_first_column = true 291 | ij_scala_call_parameters_new_line_after_lparen = 0 292 | ij_scala_call_parameters_right_paren_on_new_line = false 293 | ij_scala_call_parameters_wrap = off 294 | ij_scala_case_clause_brace_force = never 295 | ij_scala_catch_on_new_line = false 296 | ij_scala_class_annotation_wrap = split_into_lines 297 | ij_scala_class_brace_style = end_of_line 298 | ij_scala_closure_brace_force = never 299 | ij_scala_do_not_align_block_expr_params = true 300 | ij_scala_do_not_indent_case_clause_body = false 301 | ij_scala_do_not_indent_tuples_close_brace = true 302 | ij_scala_do_while_brace_force = never 303 | ij_scala_else_on_new_line = false 304 | ij_scala_enable_scaladoc_formatting = true 305 | ij_scala_enforce_functional_syntax_for_unit = true 306 | ij_scala_exclude_prefix = exclude: 307 | ij_scala_extends_keyword_wrap = off 308 | ij_scala_extends_list_wrap = off 309 | ij_scala_field_annotation_wrap = split_into_lines 310 | ij_scala_finally_brace_force = never 311 | ij_scala_finally_on_new_line = false 312 | ij_scala_for_brace_force = never 313 | ij_scala_for_statement_wrap = off 314 | ij_scala_formatter = 0 315 | ij_scala_if_brace_force = never 316 | ij_scala_indent_braced_function_args = true 317 | ij_scala_indent_case_from_switch = true 318 | ij_scala_indent_first_parameter = true 319 | ij_scala_indent_first_parameter_clause = false 320 | ij_scala_indent_type_arguments = true 321 | ij_scala_indent_type_parameters = true 322 | ij_scala_insert_whitespaces_in_simple_one_line_method = true 323 | ij_scala_keep_blank_lines_before_right_brace = 2 324 | ij_scala_keep_blank_lines_in_code = 2 325 | ij_scala_keep_blank_lines_in_declarations = 2 326 | ij_scala_keep_comments_on_same_line = true 327 | ij_scala_keep_first_column_comment = false 328 | ij_scala_keep_indents_on_empty_lines = false 329 | ij_scala_keep_line_breaks = true 330 | ij_scala_keep_one_line_lambdas_in_arg_list = false 331 | ij_scala_keep_simple_blocks_in_one_line = false 332 | ij_scala_keep_simple_methods_in_one_line = false 333 | ij_scala_keep_xml_formatting = false 334 | ij_scala_line_comment_at_first_column = true 335 | ij_scala_method_annotation_wrap = split_into_lines 336 | ij_scala_method_brace_force = never 337 | ij_scala_method_brace_style = end_of_line 338 | ij_scala_method_call_chain_wrap = off 339 | ij_scala_method_parameters_new_line_after_left_paren = false 340 | ij_scala_method_parameters_right_paren_on_new_line = false 341 | ij_scala_method_parameters_wrap = off 342 | ij_scala_modifier_list_wrap = false 343 | ij_scala_multiline_string_align_dangling_closing_quotes = false 344 | ij_scala_multiline_string_closing_quotes_on_new_line = true 345 | ij_scala_multiline_string_insert_margin_on_enter = true 346 | ij_scala_multiline_string_margin_char = | 347 | ij_scala_multiline_string_margin_indent = 2 348 | ij_scala_multiline_string_opening_quotes_on_new_line = true 349 | ij_scala_multiline_string_process_margin_on_copy_paste = true 350 | ij_scala_newline_after_annotations = false 351 | ij_scala_not_continuation_indent_for_params = false 352 | ij_scala_parameter_annotation_wrap = off 353 | ij_scala_parentheses_expression_new_line_after_left_paren = false 354 | ij_scala_parentheses_expression_right_paren_on_new_line = false 355 | ij_scala_place_closure_parameters_on_new_line = false 356 | ij_scala_place_self_type_on_new_line = true 357 | ij_scala_prefer_parameters_wrap = false 358 | ij_scala_preserve_space_after_method_declaration_name = false 359 | ij_scala_reformat_on_compile = false 360 | ij_scala_replace_case_arrow_with_unicode_char = false 361 | ij_scala_replace_for_generator_arrow_with_unicode_char = false 362 | ij_scala_replace_lambda_with_greek_letter = false 363 | ij_scala_replace_map_arrow_with_unicode_char = false 364 | ij_scala_scalafmt_reformat_on_files_save = false 365 | ij_scala_scalafmt_show_invalid_code_warnings = true 366 | ij_scala_scalafmt_use_intellij_formatter_for_range_format = true 367 | ij_scala_sd_align_exception_comments = true 368 | ij_scala_sd_align_other_tags_comments = true 369 | ij_scala_sd_align_parameters_comments = true 370 | ij_scala_sd_align_return_comments = true 371 | ij_scala_sd_blank_line_after_parameters_comments = false 372 | ij_scala_sd_blank_line_after_return_comments = false 373 | ij_scala_sd_blank_line_before_parameters = false 374 | ij_scala_sd_blank_line_before_tags = true 375 | ij_scala_sd_blank_line_between_parameters = false 376 | ij_scala_sd_keep_blank_lines_between_tags = false 377 | ij_scala_sd_preserve_spaces_in_tags = false 378 | ij_scala_space_after_comma = true 379 | ij_scala_space_after_for_semicolon = true 380 | ij_scala_space_after_modifiers_constructor = false 381 | ij_scala_space_after_type_colon = true 382 | ij_scala_space_before_brace_method_call = true 383 | ij_scala_space_before_class_left_brace = true 384 | ij_scala_space_before_infix_like_method_parentheses = false 385 | ij_scala_space_before_infix_method_call_parentheses = false 386 | ij_scala_space_before_infix_operator_like_method_call_parentheses = true 387 | ij_scala_space_before_method_call_parentheses = false 388 | ij_scala_space_before_method_left_brace = true 389 | ij_scala_space_before_method_parentheses = false 390 | ij_scala_space_before_type_colon = false 391 | ij_scala_space_before_type_parameter_in_def_list = false 392 | ij_scala_space_before_type_parameter_list = false 393 | ij_scala_space_inside_closure_braces = true 394 | ij_scala_space_inside_self_type_braces = true 395 | ij_scala_space_within_empty_method_call_parentheses = false 396 | ij_scala_spaces_around_at_in_patterns = false 397 | ij_scala_spaces_in_imports = false 398 | ij_scala_spaces_in_one_line_blocks = false 399 | ij_scala_spaces_within_brackets = false 400 | ij_scala_spaces_within_for_parentheses = false 401 | ij_scala_spaces_within_if_parentheses = false 402 | ij_scala_spaces_within_method_call_parentheses = false 403 | ij_scala_spaces_within_method_parentheses = false 404 | ij_scala_spaces_within_parentheses = false 405 | ij_scala_spaces_within_while_parentheses = false 406 | ij_scala_special_else_if_treatment = true 407 | ij_scala_trailing_comma_arg_list_enabled = true 408 | ij_scala_trailing_comma_import_selector_enabled = false 409 | ij_scala_trailing_comma_mode = trailing_comma_keep 410 | ij_scala_trailing_comma_params_enabled = true 411 | ij_scala_trailing_comma_pattern_arg_list_enabled = false 412 | ij_scala_trailing_comma_tuple_enabled = false 413 | ij_scala_trailing_comma_tuple_type_enabled = false 414 | ij_scala_trailing_comma_type_params_enabled = false 415 | ij_scala_try_brace_force = never 416 | ij_scala_type_annotation_exclude_constant = true 417 | ij_scala_type_annotation_exclude_in_dialect_sources = true 418 | ij_scala_type_annotation_exclude_in_test_sources = false 419 | ij_scala_type_annotation_exclude_member_of_anonymous_class = false 420 | ij_scala_type_annotation_exclude_member_of_private_class = false 421 | ij_scala_type_annotation_exclude_when_type_is_stable = true 422 | ij_scala_type_annotation_function_parameter = false 423 | ij_scala_type_annotation_implicit_modifier = true 424 | ij_scala_type_annotation_local_definition = false 425 | ij_scala_type_annotation_private_member = false 426 | ij_scala_type_annotation_protected_member = true 427 | ij_scala_type_annotation_public_member = true 428 | ij_scala_type_annotation_structural_type = true 429 | ij_scala_type_annotation_underscore_parameter = false 430 | ij_scala_type_annotation_unit_type = true 431 | ij_scala_use_alternate_continuation_indent_for_params = false 432 | ij_scala_use_scaladoc2_formatting = false 433 | ij_scala_variable_annotation_wrap = off 434 | ij_scala_while_brace_force = never 435 | ij_scala_while_on_new_line = false 436 | ij_scala_wrap_before_with_keyword = false 437 | ij_scala_wrap_first_method_in_call_chain = false 438 | ij_scala_wrap_long_lines = false 439 | 440 | [.editorconfig] 441 | ij_editorconfig_align_group_field_declarations = false 442 | ij_editorconfig_space_after_colon = false 443 | ij_editorconfig_space_after_comma = true 444 | ij_editorconfig_space_before_colon = false 445 | ij_editorconfig_space_before_comma = false 446 | ij_editorconfig_spaces_around_assignment_operators = true 447 | 448 | [{*.gant,*.groovy,*.gradle,*.gdsl,*.gy}] 449 | ij_groovy_align_group_field_declarations = false 450 | ij_groovy_align_multiline_array_initializer_expression = false 451 | ij_groovy_align_multiline_assignment = false 452 | ij_groovy_align_multiline_binary_operation = false 453 | ij_groovy_align_multiline_chained_methods = false 454 | ij_groovy_align_multiline_extends_list = false 455 | ij_groovy_align_multiline_for = true 456 | ij_groovy_align_multiline_method_parentheses = false 457 | ij_groovy_align_multiline_parameters = true 458 | ij_groovy_align_multiline_parameters_in_calls = false 459 | ij_groovy_align_multiline_resources = true 460 | ij_groovy_align_multiline_ternary_operation = false 461 | ij_groovy_align_multiline_throws_list = false 462 | ij_groovy_align_throws_keyword = false 463 | ij_groovy_array_initializer_new_line_after_left_brace = false 464 | ij_groovy_array_initializer_right_brace_on_new_line = false 465 | ij_groovy_array_initializer_wrap = off 466 | ij_groovy_assert_statement_wrap = off 467 | ij_groovy_assignment_wrap = off 468 | ij_groovy_binary_operation_wrap = off 469 | ij_groovy_blank_lines_after_class_header = 0 470 | ij_groovy_blank_lines_after_imports = 1 471 | ij_groovy_blank_lines_after_package = 1 472 | ij_groovy_blank_lines_around_class = 1 473 | ij_groovy_blank_lines_around_field = 0 474 | ij_groovy_blank_lines_around_field_in_interface = 0 475 | ij_groovy_blank_lines_around_method = 1 476 | ij_groovy_blank_lines_around_method_in_interface = 1 477 | ij_groovy_blank_lines_before_imports = 1 478 | ij_groovy_blank_lines_before_method_body = 0 479 | ij_groovy_blank_lines_before_package = 0 480 | ij_groovy_block_brace_style = end_of_line 481 | ij_groovy_block_comment_at_first_column = true 482 | ij_groovy_call_parameters_new_line_after_left_paren = false 483 | ij_groovy_call_parameters_right_paren_on_new_line = false 484 | ij_groovy_call_parameters_wrap = off 485 | ij_groovy_catch_on_new_line = false 486 | ij_groovy_class_annotation_wrap = split_into_lines 487 | ij_groovy_class_brace_style = end_of_line 488 | ij_groovy_do_while_brace_force = never 489 | ij_groovy_else_on_new_line = false 490 | ij_groovy_enum_constants_wrap = off 491 | ij_groovy_extends_keyword_wrap = off 492 | ij_groovy_extends_list_wrap = off 493 | ij_groovy_field_annotation_wrap = split_into_lines 494 | ij_groovy_finally_on_new_line = false 495 | ij_groovy_for_brace_force = never 496 | ij_groovy_for_statement_new_line_after_left_paren = false 497 | ij_groovy_for_statement_right_paren_on_new_line = false 498 | ij_groovy_for_statement_wrap = off 499 | ij_groovy_if_brace_force = never 500 | ij_groovy_indent_case_from_switch = true 501 | ij_groovy_keep_blank_lines_before_right_brace = 2 502 | ij_groovy_keep_blank_lines_in_code = 2 503 | ij_groovy_keep_blank_lines_in_declarations = 2 504 | ij_groovy_keep_control_statement_in_one_line = true 505 | ij_groovy_keep_first_column_comment = true 506 | ij_groovy_keep_indents_on_empty_lines = false 507 | ij_groovy_keep_line_breaks = true 508 | ij_groovy_keep_multiple_expressions_in_one_line = false 509 | ij_groovy_keep_simple_blocks_in_one_line = false 510 | ij_groovy_keep_simple_classes_in_one_line = true 511 | ij_groovy_keep_simple_lambdas_in_one_line = true 512 | ij_groovy_keep_simple_methods_in_one_line = true 513 | ij_groovy_lambda_brace_style = end_of_line 514 | ij_groovy_line_comment_add_space = false 515 | ij_groovy_line_comment_at_first_column = true 516 | ij_groovy_method_annotation_wrap = split_into_lines 517 | ij_groovy_method_brace_style = end_of_line 518 | ij_groovy_method_call_chain_wrap = off 519 | ij_groovy_method_parameters_new_line_after_left_paren = false 520 | ij_groovy_method_parameters_right_paren_on_new_line = false 521 | ij_groovy_method_parameters_wrap = off 522 | ij_groovy_modifier_list_wrap = false 523 | ij_groovy_parameter_annotation_wrap = off 524 | ij_groovy_parentheses_expression_new_line_after_left_paren = false 525 | ij_groovy_parentheses_expression_right_paren_on_new_line = false 526 | ij_groovy_prefer_parameters_wrap = false 527 | ij_groovy_resource_list_new_line_after_left_paren = false 528 | ij_groovy_resource_list_right_paren_on_new_line = false 529 | ij_groovy_resource_list_wrap = off 530 | ij_groovy_space_after_colon = true 531 | ij_groovy_space_after_comma = true 532 | ij_groovy_space_after_comma_in_type_arguments = true 533 | ij_groovy_space_after_for_semicolon = true 534 | ij_groovy_space_after_quest = true 535 | ij_groovy_space_after_type_cast = true 536 | ij_groovy_space_before_annotation_parameter_list = false 537 | ij_groovy_space_before_array_initializer_left_brace = false 538 | ij_groovy_space_before_catch_keyword = true 539 | ij_groovy_space_before_catch_left_brace = true 540 | ij_groovy_space_before_catch_parentheses = true 541 | ij_groovy_space_before_class_left_brace = true 542 | ij_groovy_space_before_colon = true 543 | ij_groovy_space_before_comma = false 544 | ij_groovy_space_before_do_left_brace = true 545 | ij_groovy_space_before_else_keyword = true 546 | ij_groovy_space_before_else_left_brace = true 547 | ij_groovy_space_before_finally_keyword = true 548 | ij_groovy_space_before_finally_left_brace = true 549 | ij_groovy_space_before_for_left_brace = true 550 | ij_groovy_space_before_for_parentheses = true 551 | ij_groovy_space_before_for_semicolon = false 552 | ij_groovy_space_before_if_left_brace = true 553 | ij_groovy_space_before_if_parentheses = true 554 | ij_groovy_space_before_method_call_parentheses = false 555 | ij_groovy_space_before_method_left_brace = true 556 | ij_groovy_space_before_method_parentheses = false 557 | ij_groovy_space_before_quest = true 558 | ij_groovy_space_before_switch_left_brace = true 559 | ij_groovy_space_before_switch_parentheses = true 560 | ij_groovy_space_before_synchronized_left_brace = true 561 | ij_groovy_space_before_synchronized_parentheses = true 562 | ij_groovy_space_before_try_left_brace = true 563 | ij_groovy_space_before_try_parentheses = true 564 | ij_groovy_space_before_while_keyword = true 565 | ij_groovy_space_before_while_left_brace = true 566 | ij_groovy_space_before_while_parentheses = true 567 | ij_groovy_space_within_empty_array_initializer_braces = false 568 | ij_groovy_space_within_empty_method_call_parentheses = false 569 | ij_groovy_spaces_around_additive_operators = true 570 | ij_groovy_spaces_around_assignment_operators = true 571 | ij_groovy_spaces_around_bitwise_operators = true 572 | ij_groovy_spaces_around_equality_operators = true 573 | ij_groovy_spaces_around_lambda_arrow = true 574 | ij_groovy_spaces_around_logical_operators = true 575 | ij_groovy_spaces_around_multiplicative_operators = true 576 | ij_groovy_spaces_around_relational_operators = true 577 | ij_groovy_spaces_around_shift_operators = true 578 | ij_groovy_spaces_within_annotation_parentheses = false 579 | ij_groovy_spaces_within_array_initializer_braces = false 580 | ij_groovy_spaces_within_braces = true 581 | ij_groovy_spaces_within_brackets = false 582 | ij_groovy_spaces_within_cast_parentheses = false 583 | ij_groovy_spaces_within_catch_parentheses = false 584 | ij_groovy_spaces_within_for_parentheses = false 585 | ij_groovy_spaces_within_if_parentheses = false 586 | ij_groovy_spaces_within_method_call_parentheses = false 587 | ij_groovy_spaces_within_method_parentheses = false 588 | ij_groovy_spaces_within_parentheses = false 589 | ij_groovy_spaces_within_switch_parentheses = false 590 | ij_groovy_spaces_within_synchronized_parentheses = false 591 | ij_groovy_spaces_within_try_parentheses = false 592 | ij_groovy_spaces_within_while_parentheses = false 593 | ij_groovy_special_else_if_treatment = true 594 | ij_groovy_ternary_operation_wrap = off 595 | ij_groovy_throws_keyword_wrap = off 596 | ij_groovy_throws_list_wrap = off 597 | ij_groovy_variable_annotation_wrap = off 598 | ij_groovy_while_brace_force = never 599 | ij_groovy_while_on_new_line = false 600 | ij_groovy_wrap_long_lines = false 601 | 602 | [{*.jhm,*.xslt,*.xul,*.tagx,*.rng,*.xsl,*.xsd,*.jspx,*.ant,*.xml,*.tld,*.fxml,*.wsdl,*.jrxml,*.jnlp,*.pom}] 603 | ij_xml_block_comment_at_first_column = true 604 | ij_xml_keep_indents_on_empty_lines = false 605 | ij_xml_line_comment_at_first_column = true 606 | 607 | [{*.kt,*.kts}] 608 | ij_kotlin_align_in_columns_case_branch = false 609 | ij_kotlin_align_multiline_binary_operation = false 610 | ij_kotlin_align_multiline_extends_list = false 611 | ij_kotlin_align_multiline_method_parentheses = false 612 | ij_kotlin_align_multiline_parameters = true 613 | ij_kotlin_align_multiline_parameters_in_calls = false 614 | ij_kotlin_assignment_wrap = off 615 | ij_kotlin_blank_lines_after_class_header = 0 616 | ij_kotlin_blank_lines_around_block_when_branches = 0 617 | ij_kotlin_block_comment_at_first_column = true 618 | ij_kotlin_call_parameters_new_line_after_left_paren = false 619 | ij_kotlin_call_parameters_right_paren_on_new_line = false 620 | ij_kotlin_call_parameters_wrap = off 621 | ij_kotlin_catch_on_new_line = false 622 | ij_kotlin_class_annotation_wrap = split_into_lines 623 | ij_kotlin_continuation_indent_for_chained_calls = true 624 | ij_kotlin_continuation_indent_for_expression_bodies = true 625 | ij_kotlin_continuation_indent_in_argument_lists = true 626 | ij_kotlin_continuation_indent_in_elvis = true 627 | ij_kotlin_continuation_indent_in_if_conditions = true 628 | ij_kotlin_continuation_indent_in_parameter_lists = true 629 | ij_kotlin_continuation_indent_in_supertype_lists = true 630 | ij_kotlin_else_on_new_line = false 631 | ij_kotlin_enum_constants_wrap = off 632 | ij_kotlin_extends_list_wrap = off 633 | ij_kotlin_field_annotation_wrap = split_into_lines 634 | ij_kotlin_finally_on_new_line = false 635 | ij_kotlin_if_rparen_on_new_line = false 636 | ij_kotlin_import_nested_classes = false 637 | ij_kotlin_insert_whitespaces_in_simple_one_line_method = true 638 | ij_kotlin_keep_blank_lines_before_right_brace = 2 639 | ij_kotlin_keep_blank_lines_in_code = 2 640 | ij_kotlin_keep_blank_lines_in_declarations = 2 641 | ij_kotlin_keep_first_column_comment = true 642 | ij_kotlin_keep_indents_on_empty_lines = false 643 | ij_kotlin_keep_line_breaks = true 644 | ij_kotlin_lbrace_on_next_line = false 645 | ij_kotlin_line_comment_add_space = false 646 | ij_kotlin_line_comment_at_first_column = true 647 | ij_kotlin_method_annotation_wrap = split_into_lines 648 | ij_kotlin_method_call_chain_wrap = off 649 | ij_kotlin_method_parameters_new_line_after_left_paren = false 650 | ij_kotlin_method_parameters_right_paren_on_new_line = false 651 | ij_kotlin_method_parameters_wrap = off 652 | ij_kotlin_name_count_to_use_star_import = 5 653 | ij_kotlin_name_count_to_use_star_import_for_members = 3 654 | ij_kotlin_parameter_annotation_wrap = off 655 | ij_kotlin_space_after_comma = true 656 | ij_kotlin_space_after_extend_colon = true 657 | ij_kotlin_space_after_type_colon = true 658 | ij_kotlin_space_before_catch_parentheses = true 659 | ij_kotlin_space_before_comma = false 660 | ij_kotlin_space_before_extend_colon = true 661 | ij_kotlin_space_before_for_parentheses = true 662 | ij_kotlin_space_before_if_parentheses = true 663 | ij_kotlin_space_before_lambda_arrow = true 664 | ij_kotlin_space_before_type_colon = false 665 | ij_kotlin_space_before_when_parentheses = true 666 | ij_kotlin_space_before_while_parentheses = true 667 | ij_kotlin_spaces_around_additive_operators = true 668 | ij_kotlin_spaces_around_assignment_operators = true 669 | ij_kotlin_spaces_around_equality_operators = true 670 | ij_kotlin_spaces_around_function_type_arrow = true 671 | ij_kotlin_spaces_around_logical_operators = true 672 | ij_kotlin_spaces_around_multiplicative_operators = true 673 | ij_kotlin_spaces_around_range = false 674 | ij_kotlin_spaces_around_relational_operators = true 675 | ij_kotlin_spaces_around_unary_operator = false 676 | ij_kotlin_spaces_around_when_arrow = true 677 | ij_kotlin_variable_annotation_wrap = off 678 | ij_kotlin_while_on_new_line = false 679 | ij_kotlin_wrap_elvis_expressions = 1 680 | ij_kotlin_wrap_expression_body_functions = 0 681 | ij_kotlin_wrap_first_method_in_call_chain = false 682 | 683 | [{*.shtm,*.htm,*.sht,*.shtml,*.html}] 684 | ij_html_add_new_line_before_tags = body,div,p,form,h1,h2,h3 685 | ij_html_align_attributes = true 686 | ij_html_align_text = false 687 | ij_html_attribute_wrap = normal 688 | ij_html_block_comment_at_first_column = true 689 | ij_html_do_not_align_children_of_min_lines = 0 690 | ij_html_do_not_break_if_inline_tags = title,h1,h2,h3,h4,h5,h6,p 691 | ij_html_do_not_indent_children_of_tags = html,body,thead,tbody,tfoot 692 | ij_html_enforce_quotes = false 693 | ij_html_inline_tags = a,abbr,acronym,b,basefont,bdo,big,br,cite,cite,code,dfn,em,font,i,img,input,kbd,label,q,s,samp,select,small,span,strike,strong,sub,sup,textarea,tt,u,var 694 | ij_html_keep_blank_lines = 2 695 | ij_html_keep_indents_on_empty_lines = false 696 | ij_html_keep_line_breaks = true 697 | ij_html_keep_line_breaks_in_text = true 698 | ij_html_keep_whitespaces = false 699 | ij_html_keep_whitespaces_inside = span,pre,textarea 700 | ij_html_line_comment_at_first_column = true 701 | ij_html_new_line_after_last_attribute = never 702 | ij_html_new_line_before_first_attribute = never 703 | ij_html_quote_style = double 704 | ij_html_remove_new_line_before_tags = br 705 | ij_html_space_after_tag_name = false 706 | ij_html_space_around_equality_in_attribute = false 707 | ij_html_space_inside_empty_tag = false 708 | ij_html_text_wrap = normal 709 | 710 | [{*.yml,*.yaml}] 711 | indent_size = 2 712 | ij_continuation_indent_size = 2 713 | ij_yaml_keep_indents_on_empty_lines = false 714 | ij_yaml_keep_line_breaks = true 715 | 716 | [{*.zsh,*.bash,*.sh}] 717 | ij_shell_binary_ops_start_line = false 718 | ij_shell_keep_column_alignment_padding = false 719 | ij_shell_minify_program = false 720 | ij_shell_redirect_followed_by_space = false 721 | ij_shell_switch_cases_indented = false 722 | --------------------------------------------------------------------------------