mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-01 02:56:28 +03:00
Added native JSON formatter. Added icons for files in file locator. UICodeEditorPlugin can request and draw gutter space.
44 lines
878 B
JSON
44 lines
878 B
JSON
{
|
|
"config": {
|
|
"auto_format_on_save": false
|
|
},
|
|
"keybindings": {
|
|
"format-doc": "alt+f"
|
|
},
|
|
"formatters": [
|
|
{
|
|
"file_patterns": ["%.js$", "%.ts$"],
|
|
"command": "prettier $FILENAME"
|
|
},
|
|
{
|
|
"file_patterns": ["%.cpp$", "%.h$", "%.hpp$"],
|
|
"command": "clang-format --style=file $FILENAME"
|
|
},
|
|
{
|
|
"file_patterns": ["%.py$", "%.pyw$"],
|
|
"command": "black $FILENAME",
|
|
"type": "inplace"
|
|
},
|
|
{
|
|
"file_patterns": ["%.kt$"],
|
|
"command": "ktlint -F $FILENAME",
|
|
"type": "inplace"
|
|
},
|
|
{
|
|
"file_patterns": ["%.json$", "%.cson$"],
|
|
"command": "json",
|
|
"type": "native"
|
|
},
|
|
{
|
|
"file_patterns": ["%.xml", "%.html?$"],
|
|
"command": "xml",
|
|
"type": "native"
|
|
},
|
|
{
|
|
"file_patterns": ["%.css"],
|
|
"command": "css",
|
|
"type": "native"
|
|
}
|
|
]
|
|
}
|