8000 Allow `locale` key to be used in `config ...` commands. by cmaglie · Pull Request #1952 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

Allow locale key to be used in config ... commands. #1952

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Allow 'locale'key to be used in 'config ...' commands
  • Loading branch information
cmaglie committed Oct 26, 2022
commit bc3c6e3d4de233959092e9931beffdb97f2c1b32
1 change: 1 addition & 0 deletions cli/config/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ var validMap = map[string]reflect.Kind{
"directories.builtin.tools": reflect.String,
"directories.builtin.libraries": reflect.String,
"library.enable_unsafe_install": reflect.Bool,
"locale": reflect.String,
"logging.file": reflect.String,
"logging.format": reflect.String,
"logging.level": reflect.String,
Expand Down
0