mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-31 10:36:30 +03:00
Moved plugins configuration files to plugins folder. UICodeEditor: Fixed whitespaces color.
21 lines
410 B
JSON
21 lines
410 B
JSON
[
|
|
{
|
|
"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"
|
|
}
|
|
]
|