Hello everyone, can I disable meltano autoformatti...
# troubleshooting
p
Hello everyone, can I disable meltano autoformatting my meltano.yml files? After upgrading to the latest version it started autoformatting my meltano.yml files, but the default formatting doesn't follow our project quidelines for yaml files. I found this option for user settings, but the config file resides outside of the project directory and therefore is not tracked in git and applicable across environments.
👀 1
m
Setting the environment variable
MELTANO_PROJECT_READONLY=1
should stop it, though it also disables CLI changes to your configuration files too
e
After upgrading to the latest version it started autoformatting my meltano.yml files
Oh, that's a bug! What formatting changes are occurring?
p
Well it's formatting my current style of:
Copy code
plugins:
  extractors:
    - name: xxx
      variant: xxx
to:
Copy code
plugins:
  extractors:
  - name: xxx
    variant: xxx