sindresorhus / atom-editorconfig

Helps developers maintain consistent coding styles between different editors
https://atom.io/packages/editorconfig
MIT License
812 stars 80 forks source link

Adding extra indentation in Apex code #156

Closed fricco closed 7 years ago

fricco commented 7 years ago

Hello, I'm using Atom-Beautify in a Windows 7 64 bit machine and haven't change anything in the configuration. I'm working with Apex code (.cls and .trigger) and for some reason when I Beatify the file, it's adding additional tabs. For example: @isTest private class MyTestClass { (tab)(tab)@testSetup (tab)(tab)static void createCommonData(){ (tab)(tab)(tab)(tab)Account a = newAccount(); (tab)(tab)(tab)(tab)insert a;

When what I'm expecting is: @isTest private class MyTestClass { (tab)@testSetup (tab)static void createCommonData(){ (tab)(tab)Account a = newAccount(); (tab)(tab)insert a;

florianb commented 7 years ago

Hi @fricco -- thanks for getting in touch, your issue belongs to the beautify-package, take a look at #138 to get more information.

💝