* fix(style): formatting inconsistencies across codebase - Remove trailing semicolons from TypeScript imports - Fix Vue template indentation and line breaks - Standardize component attribute formatting - Remove unnecessary empty lines - Reorder import statements for consistency * chore: update import path and add editorconfig Update SidebarNavLink import path to match new component structure and add standard editorconfig for consistent code formatting
31 lines
598 B
INI
31 lines
598 B
INI
# top-most EditorConfig file
|
|
root = true
|
|
|
|
# Default settings for all files
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
trim_trailing_whitespace = true
|
|
|
|
# For Markdown files, don't trim trailing whitespace (karena kadang dipakai untuk line break)
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
# For JSON, YAML, and config files
|
|
[*.{json,yml,yaml}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# For JS, TS, Vue files
|
|
[*.{js,ts,vue}]
|
|
indent_style = space
|
|
indent_size = 2
|
|
|
|
# For CSS, SCSS, PostCSS
|
|
[*.{css,scss,pcss}]
|
|
indent_style = space
|
|
indent_size = 2
|