Just wondering if something like:
# frozen_string_literal: true
exists but for Array and Hash?
The goal is not having to .freeze
every single of those within the same globals file.
Found a way to handle it without using another gem using only vscode and rubocop :
.vscode/settings.json
{
"editor.formatOnSave": true,
"editor.formatOnSaveTimeout": 5000,
"ruby.format": "rubocop"
}
Thanks to Tom Lord for the hint.