mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-29 17:46:29 +03:00
25 lines
469 B
JSON
25 lines
469 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"
|
|
},
|
|
{
|
|
"file_patterns": ["%.json$", "%.cson$"],
|
|
"command": "jq -M --tab . $FILENAME"
|
|
}
|
|
]
|