-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Replace `.prettierrrc.json` by `.editorconfig` (TypeScript + Markdown standards + JetBrains specific) * Mention in README the fact that environment variables can be placed in a `.env` file * Create node.yml * Mention NodeJS v16 in install instructions * Initial TypeScript Port - Stop ignoring package-lock.json (nor recommended) - Bump all dependencies - Configure TypeScript Compiler - Fix several unhandled potential errors - Add many comments - Migrate to TypeScript * Add `.vscode` and `.idea` folders to gitignore * Import `redis` module the right way * Bump required Discord.JS version * Remove keys duplicated for rank command completion * Support new Discord global name for rank command * Improve TODO * Bump all packages * Fix crash with staff messages server and prefer use of nickname and global name instead of username * Add `JetBrains` run configurations * Add `VSCode` run configurations
- Loading branch information
Showing
14 changed files
with
1,356 additions
and
496 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 4 | ||
indent_style = space | ||
insert_final_newline = false | ||
max_line_length = 120 | ||
tab_width = 4 | ||
ij_continuation_indent_size = 8 | ||
ij_formatter_off_tag = @formatter:off | ||
ij_formatter_on_tag = @formatter:on | ||
ij_formatter_tags_enabled = true | ||
ij_smart_tabs = false | ||
ij_visual_guides = none | ||
ij_wrap_on_typing = false | ||
|
||
[{*.ats,*.cts,*.mts,*.ts}] | ||
indent_size = 2 | ||
indent_style = tab | ||
tab_width = 2 | ||
ij_continuation_indent_size = 2 | ||
ij_visual_guides = 80 | ||
ij_typescript_align_imports = false | ||
ij_typescript_align_multiline_array_initializer_expression = false | ||
ij_typescript_align_multiline_binary_operation = false | ||
ij_typescript_align_multiline_chained_methods = false | ||
ij_typescript_align_multiline_extends_list = false | ||
ij_typescript_align_multiline_for = true | ||
ij_typescript_align_multiline_parameters = true | ||
ij_typescript_align_multiline_parameters_in_calls = false | ||
ij_typescript_align_multiline_ternary_operation = false | ||
ij_typescript_align_object_properties = 0 | ||
ij_typescript_align_union_types = false | ||
ij_typescript_align_var_statements = 0 | ||
ij_typescript_array_initializer_new_line_after_left_brace = false | ||
ij_typescript_array_initializer_right_brace_on_new_line = false | ||
ij_typescript_array_initializer_wrap = off | ||
ij_typescript_assignment_wrap = off | ||
ij_typescript_binary_operation_sign_on_next_line = false | ||
ij_typescript_binary_operation_wrap = off | ||
ij_typescript_blacklist_imports = rxjs/Rx,node_modules/**,**/node_modules/**,@angular/material,@angular/material/typings/** | ||
ij_typescript_blank_lines_after_imports = 1 | ||
ij_typescript_blank_lines_around_class = 1 | ||
ij_typescript_blank_lines_around_field = 0 | ||
ij_typescript_blank_lines_around_field_in_interface = 0 | ||
ij_typescript_blank_lines_around_function = 1 | ||
ij_typescript_blank_lines_around_method = 1 | ||
ij_typescript_blank_lines_around_method_in_interface = 1 | ||
ij_typescript_block_brace_style = end_of_line | ||
ij_typescript_block_comment_add_space = false | ||
ij_typescript_block_comment_at_first_column = true | ||
ij_typescript_call_parameters_new_line_after_left_paren = false | ||
ij_typescript_call_parameters_right_paren_on_new_line = false | ||
ij_typescript_call_parameters_wrap = off | ||
ij_typescript_catch_on_new_line = false | ||
ij_typescript_chained_call_dot_on_new_line = true | ||
ij_typescript_class_brace_style = end_of_line | ||
ij_typescript_comma_on_new_line = false | ||
ij_typescript_do_while_brace_force = never | ||
ij_typescript_else_on_new_line = false | ||
ij_typescript_enforce_trailing_comma = remove | ||
ij_typescript_enum_constants_wrap = on_every_item | ||
ij_typescript_extends_keyword_wrap = off | ||
ij_typescript_extends_list_wrap = off | ||
ij_typescript_field_prefix = _ | ||
ij_typescript_file_name_style = relaxed | ||
ij_typescript_finally_on_new_line = false | ||
ij_typescript_for_brace_force = never | ||
ij_typescript_for_statement_new_line_after_left_paren = false | ||
ij_typescript_for_statement_right_paren_on_new_line = false | ||
ij_typescript_for_statement_wrap = off | ||
ij_typescript_force_quote_style = true | ||
ij_typescript_force_semicolon_style = true | ||
ij_typescript_function_expression_brace_style = end_of_line | ||
ij_typescript_if_brace_force = never | ||
ij_typescript_import_merge_members = global | ||
ij_typescript_import_prefer_absolute_path = global | ||
ij_typescript_import_sort_members = true | ||
ij_typescript_import_sort_module_name = false | ||
ij_typescript_import_use_node_resolution = true | ||
ij_typescript_imports_wrap = on_every_item | ||
ij_typescript_indent_case_from_switch = true | ||
ij_typescript_indent_chained_calls = true | ||
ij_typescript_indent_package_children = 0 | ||
ij_typescript_jsdoc_include_types = false | ||
ij_typescript_jsx_attribute_value = braces | ||
ij_typescript_keep_blank_lines_in_code = 2 | ||
ij_typescript_keep_first_column_comment = true | ||
ij_typescript_keep_indents_on_empty_lines = false | ||
ij_typescript_keep_line_breaks = true | ||
ij_typescript_keep_simple_blocks_in_one_line = false | ||
ij_typescript_keep_simple_methods_in_one_line = false | ||
ij_typescript_line_comment_add_space = true | ||
ij_typescript_line_comment_at_first_column = false | ||
ij_typescript_method_brace_style = end_of_line | ||
ij_typescript_method_call_chain_wrap = off | ||
ij_typescript_method_parameters_new_line_after_left_paren = false | ||
ij_typescript_method_parameters_right_paren_on_new_line = false | ||
ij_typescript_method_parameters_wrap = off | ||
ij_typescript_object_literal_wrap = on_every_item | ||
ij_typescript_object_types_wrap = on_every_item | ||
ij_typescript_parentheses_expression_new_line_after_left_paren = false | ||
ij_typescript_parentheses_expression_right_paren_on_new_line = false | ||
ij_typescript_place_assignment_sign_on_next_line = false | ||
ij_typescript_prefer_as_type_cast = false | ||
ij_typescript_prefer_explicit_types_function_expression_returns = false | ||
ij_typescript_prefer_explicit_types_function_returns = false | ||
ij_typescript_prefer_explicit_types_vars_fields = false | ||
ij_typescript_prefer_parameters_wrap = false | ||
ij_typescript_reformat_c_style_comments = false | ||
ij_typescript_space_after_colon = true | ||
ij_typescript_space_after_comma = true | ||
ij_typescript_space_after_dots_in_rest_parameter = false | ||
ij_typescript_space_after_generator_mult = true | ||
ij_typescript_space_after_property_colon = true | ||
ij_typescript_space_after_quest = true | ||
ij_typescript_space_after_type_colon = true | ||
ij_typescript_space_after_unary_not = false | ||
ij_typescript_space_before_async_arrow_lparen = true | ||
ij_typescript_space_before_catch_keyword = true | ||
ij_typescript_space_before_catch_left_brace = true | ||
ij_typescript_space_before_catch_parentheses = true | ||
ij_typescript_space_before_class_lbrace = true | ||
ij_typescript_space_before_class_left_brace = true | ||
ij_typescript_space_before_colon = true | ||
ij_typescript_space_before_comma = false | ||
ij_typescript_space_before_do_left_brace = true | ||
ij_typescript_space_before_else_keyword = true | ||
ij_typescript_space_before_else_left_brace = true | ||
ij_typescript_space_before_finally_keyword = true | ||
ij_typescript_space_before_finally_left_brace = true | ||
ij_typescript_space_before_for_left_brace = true | ||
ij_typescript_space_before_for_parentheses = true | ||
ij_typescript_space_before_for_semicolon = false | ||
ij_typescript_space_before_function_left_parenth = false | ||
ij_typescript_space_before_generator_mult = false | ||
ij_typescript_space_before_if_left_brace = true | ||
ij_typescript_space_before_if_parentheses = true | ||
ij_typescript_space_before_method_call_parentheses = false | ||
ij_typescript_space_before_method_left_brace = true | ||
ij_typescript_space_before_method_parentheses = false | ||
ij_typescript_space_before_property_colon = false | ||
ij_typescript_space_before_quest = true | ||
ij_typescript_space_before_switch_left_brace = true | ||
ij_typescript_space_before_switch_parentheses = true | ||
ij_typescript_space_before_try_left_brace = true | ||
ij_typescript_space_before_type_colon = false | ||
ij_typescript_space_before_unary_not = false | ||
ij_typescript_space_before_while_keyword = true | ||
ij_typescript_space_before_while_left_brace = true | ||
ij_typescript_space_before_while_parentheses = true | ||
ij_typescript_spaces_around_additive_operators = true | ||
ij_typescript_spaces_around_arrow_function_operator = true | ||
ij_typescript_spaces_around_assignment_operators = true | ||
ij_typescript_spaces_around_bitwise_operators = true | ||
ij_typescript_spaces_around_equality_operators = true | ||
ij_typescript_spaces_around_logical_operators = true | ||
ij_typescript_spaces_around_multiplicative_operators = true | ||
ij_typescript_spaces_around_relational_operators = true | ||
ij_typescript_spaces_around_shift_operators = true | ||
ij_typescript_spaces_around_unary_operator = false | ||
ij_typescript_spaces_within_array_initializer_brackets = false | ||
ij_typescript_spaces_within_brackets = false | ||
ij_typescript_spaces_within_catch_parentheses = false | ||
ij_typescript_spaces_within_for_parentheses = false | ||
ij_typescript_spaces_within_if_parentheses = false | ||
ij_typescript_spaces_within_imports = true | ||
ij_typescript_spaces_within_interpolation_expressions = false | ||
ij_typescript_spaces_within_method_call_parentheses = false | ||
ij_typescript_spaces_within_method_parentheses = false | ||
ij_typescript_spaces_within_object_literal_braces = true | ||
ij_typescript_spaces_within_object_type_braces = true | ||
ij_typescript_spaces_within_parentheses = false | ||
ij_typescript_spaces_within_switch_parentheses = false | ||
ij_typescript_spaces_within_type_assertion = false | ||
ij_typescript_spaces_within_union_types = true | ||
ij_typescript_spaces_within_while_parentheses = false | ||
ij_typescript_special_else_if_treatment = true | ||
ij_typescript_ternary_operation_signs_on_next_line = false | ||
ij_typescript_ternary_operation_wrap = off | ||
ij_typescript_union_types_wrap = on_every_item | ||
ij_typescript_use_chained_calls_group_indents = false | ||
ij_typescript_use_double_quotes = true | ||
ij_typescript_use_explicit_js_extension = auto | ||
ij_typescript_use_path_mapping = always | ||
ij_typescript_use_public_modifier = false | ||
ij_typescript_use_semicolon_after_statement = false | ||
ij_typescript_var_declaration_wrap = normal | ||
ij_typescript_while_brace_force = never | ||
ij_typescript_while_on_new_line = false | ||
ij_typescript_wrap_comments = false | ||
|
||
[{*.markdown,*.md}] | ||
ij_markdown_force_one_space_after_blockquote_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_between_words = true | ||
ij_markdown_format_tables = true | ||
ij_markdown_insert_quote_arrows_on_wrap = true | ||
ij_markdown_keep_indents_on_empty_lines = false | ||
ij_markdown_keep_line_breaks_inside_text_blocks = true | ||
ij_markdown_max_lines_around_block_elements = 1 | ||
ij_markdown_max_lines_around_header = 1 | ||
ij_markdown_max_lines_between_paragraphs = 1 | ||
ij_markdown_min_lines_around_block_elements = 1 | ||
ij_markdown_min_lines_around_header = 1 | ||
ij_markdown_min_lines_between_paragraphs = 1 | ||
ij_markdown_wrap_text_if_long = true | ||
ij_markdown_wrap_text_inside_blockquotes = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: NodeJS | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install Node.js v16.9.0 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.9.0 | ||
cache: 'npm' | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Build" type="js.build_tools.npm"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="build" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Start" type="js.build_tools.npm"> | ||
<package-json value="$PROJECT_DIR$/package.json" /> | ||
<command value="run" /> | ||
<scripts> | ||
<script value="start" /> | ||
</scripts> | ||
<node-interpreter value="project" /> | ||
<envs /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Start", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "start"], | ||
"runtimeExecutable": "npm", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "node" | ||
}, | ||
{ | ||
"name": "Build", | ||
"request": "launch", | ||
"runtimeArgs": ["run-script", "build"], | ||
"runtimeExecutable": "npm", | ||
"skipFiles": ["<node_internals>/**"], | ||
"type": "node" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.