Housekepping. (0.7.3)
This commit is contained in:
parent
fbee5b6d3e
commit
ea9dd71659
5 changed files with 24 additions and 45 deletions
|
|
@ -13,16 +13,6 @@ ij_smart_tabs = false
|
||||||
ij_visual_guides = none
|
ij_visual_guides = none
|
||||||
ij_wrap_on_typing = false
|
ij_wrap_on_typing = false
|
||||||
|
|
||||||
[*.c]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 4
|
|
||||||
tab_width = 4
|
|
||||||
|
|
||||||
[*.csv]
|
|
||||||
indent_style = tab
|
|
||||||
ij_csv_keep_indents_on_empty_lines = true
|
|
||||||
ij_csv_wrap_long_lines = false
|
|
||||||
|
|
||||||
[*.properties]
|
[*.properties]
|
||||||
ij_properties_align_group_field_declarations = false
|
ij_properties_align_group_field_declarations = false
|
||||||
ij_properties_keep_blank_lines = false
|
ij_properties_keep_blank_lines = false
|
||||||
|
|
@ -37,9 +27,15 @@ ij_editorconfig_space_before_colon = false
|
||||||
ij_editorconfig_space_before_comma = false
|
ij_editorconfig_space_before_comma = false
|
||||||
ij_editorconfig_spaces_around_assignment_operators = true
|
ij_editorconfig_spaces_around_assignment_operators = true
|
||||||
|
|
||||||
[{*.bash,*.sh,*.zsh}]
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
tab_width = 2
|
tab_width = 1
|
||||||
|
|
||||||
|
[{*.bash,*.sh,*.zsh}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
tab_width = 1
|
||||||
ij_shell_binary_ops_start_line = false
|
ij_shell_binary_ops_start_line = false
|
||||||
ij_shell_keep_column_alignment_padding = false
|
ij_shell_keep_column_alignment_padding = false
|
||||||
ij_shell_minify_program = false
|
ij_shell_minify_program = false
|
||||||
|
|
@ -47,10 +43,20 @@ ij_shell_redirect_followed_by_space = false
|
||||||
ij_shell_switch_cases_indented = false
|
ij_shell_switch_cases_indented = false
|
||||||
ij_shell_use_unix_line_separator = true
|
ij_shell_use_unix_line_separator = true
|
||||||
|
|
||||||
|
[*.c]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
tab_width = 1
|
||||||
|
|
||||||
|
[*.csv]
|
||||||
|
indent_style = tab
|
||||||
|
ij_csv_keep_indents_on_empty_lines = true
|
||||||
|
ij_csv_wrap_long_lines = false
|
||||||
|
|
||||||
[{*.markdown,*.md}]
|
[{*.markdown,*.md}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
tab_width = 2
|
tab_width = 1
|
||||||
ij_markdown_force_one_space_after_blockquote_symbol = true
|
ij_markdown_force_one_space_after_blockquote_symbol = true
|
||||||
ij_markdown_force_one_space_after_header_symbol = true
|
ij_markdown_force_one_space_after_header_symbol = true
|
||||||
ij_markdown_force_one_space_after_list_bullet = true
|
ij_markdown_force_one_space_after_list_bullet = true
|
||||||
|
|
@ -70,8 +76,8 @@ ij_markdown_wrap_text_inside_blockquotes = true
|
||||||
|
|
||||||
[{*.py,*.pyw}]
|
[{*.py,*.pyw}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 4
|
||||||
tab_width = 2
|
tab_width = 1
|
||||||
max_line_length = 100
|
max_line_length = 100
|
||||||
ij_python_align_collections_and_comprehensions = true
|
ij_python_align_collections_and_comprehensions = true
|
||||||
ij_python_align_multiline_imports = true
|
ij_python_align_multiline_imports = true
|
||||||
|
|
|
||||||
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
|
.aiignore
|
||||||
.idea/
|
.idea/
|
||||||
build*
|
build*
|
||||||
cmake*
|
cmake*
|
||||||
|
|
@ -5,6 +6,5 @@ dist/
|
||||||
lib/*.so
|
lib/*.so
|
||||||
out/
|
out/
|
||||||
src/*.o
|
src/*.o
|
||||||
tmp/
|
tmp*
|
||||||
.aiignore
|
|
||||||
dev.txt
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
cmake_minimum_required(VERSION 3.16)
|
cmake_minimum_required(VERSION 3.16)
|
||||||
project(fun VERSION 0.7.2 LANGUAGES C)
|
project(fun VERSION 0.7.3 LANGUAGES C)
|
||||||
|
|
||||||
set(CMAKE_C_STANDARD 11)
|
set(CMAKE_C_STANDARD 11)
|
||||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||||
|
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
/*
|
|
||||||
* This file is part of the Fun programming language.
|
|
||||||
* https://hanez.org/project/fun/
|
|
||||||
*
|
|
||||||
* Copyright 2025 Johannes Findeisen <you@hanez.org>
|
|
||||||
* Licensed under the terms of the ISC license.
|
|
||||||
* https://opensource.org/license/isc-license-txt
|
|
||||||
*/
|
|
||||||
print("Have fun!")
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
#!/usr/bin/env fun
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This file is part of the Fun programming language.
|
|
||||||
* https://hanez.org/project/fun/
|
|
||||||
*
|
|
||||||
* Copyright 2025 Johannes Findeisen <you@hanez.org>
|
|
||||||
* Licensed under the terms of the ISC license.
|
|
||||||
* https://opensource.org/license/isc-license-txt
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Have, fun!
|
|
||||||
*/
|
|
||||||
|
|
||||||
print("Have fun!")
|
|
||||||
|
|
||||||
// Bye, no fun!
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue