Editor Config
အဲ့ဒါ တွေကို Editor Config ကအလွယ်တကူဖြေရှင်းပေးနိုင်ပါတယ်။ Editor Config ရဲ့ အားသာချက်ကတော့ အတော်များများ IDE/ Text Editor တွေမှာ built-in ပါပြီးသားဖြစ်ပြီး၊ built-in မပါရင်လဲ Plugin တွေက အတော်များများအတွက်ရှိပါတယ်။
# EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true # Unix-style newlines with a newline ending every file [*] end_of_line = lf insert_final_newline = true # Matches multiple files with brace expansion notation # Set default charset [*.{js,py}] charset = utf-8 # 4 space indentation [*.py] indent_style = space indent_size = 4 # Tab indentation (no size specified) [Makefile] indent_style = tab # Indentation override for all JS under lib directory [lib/**.js] indent_style = space indent_size = 2 # Matches the exact files either package.json or .travis.yml [{package.json,.travis.yml}] indent_style = space indent_size = 2
ဒါကတော့ ဥပမာ တစ်ခုပါ။ config တွေကို လဲစိတ်ကြိုက်သတ်မှတ်ထားနိုင်တော့ အတော်လေးအဆင်ပြေပါတယ်။ Editor Config ကို သုံးမယ်ရင်တော့ ပေါ်က configuration တွေနဲ့ .editorconfig ဆိုတဲ့ file လေထဲထည့်မယ်။ .editorconfig file ကို apply လုပ်ချင်တဲ့ root directory အောက်ကိုထည့်လိုက်ရုံပါပဲ။ Plugin ထည့်ဖို့လိုတဲ့ IDE/ Text Editor ဆိုရင်တော့ ထည့်ရပါမယ်။အသေးစိတ်လေ့လာချင်တယ်ဆိုရင်တော့ Editor Config ရဲ့ official website မှာ သွားရောက်လေ့လာနိုင်ပါတယ်။
Editor Config:https://editorconfig.org
Comments