mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* Change code style to 1TBS
* refactor creating ".ssh" directoy
* Add Windows-2022 / macOS-11 / macOS-12 / Ubuntu-22.04
Drop Ubuntu-16.04
* Drop centos:8 (Docker container)
* add CentOS 8 Stream (Docker container)
* use YAML alias
* Revert "use YAML alias"
This reverts commit 1ddbc7fde8
.
* update .eslintrc
* move calling main to front
44 lines
754 B
INI
44 lines
754 B
INI
# http://editorconfig.org/
|
|
# https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
|
|
root = true
|
|
|
|
|
|
# recommended settings; DO NOT CHANGE!
|
|
[*]
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
|
|
# common settings
|
|
[*]
|
|
indent_style = tab
|
|
indent_size = 4
|
|
tab_width = 4
|
|
max_line_length = off
|
|
|
|
quote_type = double
|
|
curly_bracket_next_line = true
|
|
spaces_around_operators = true
|
|
spaces_around_brackets = none
|
|
indent_brace_style = allman
|
|
|
|
|
|
# JavaScript/TypeScript
|
|
[*.{js,ts}]
|
|
indent_style = space
|
|
curly_bracket_next_line = false
|
|
indent_brace_style = K&R
|
|
|
|
|
|
# JSON/YAML
|
|
[*.{json,babelrc,code-workspace,yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
tab_width = 2
|
|
|
|
|
|
# markdown
|
|
[*.md]
|
|
indent_style = space
|