Расширение EditorConfig для VS Code ничего не делаетHtml

Программисты Html
Anonymous
Расширение EditorConfig для VS Code ничего не делает

Сообщение Anonymous »

В качестве редактора я использую VS Code. У нас есть файл .editorconfig с настройками формата внутри. Мы все используем в наших редакторах расширение EditorConfig для общего форматирования HTML и CSS. Я установил расширение EditorConfig для VS Code отсюда: https://github.com/editorconfig/editorconfig-vscode
Наш файл .editorconfig выглядит следующим образом:

Код: Выделить всё

# This is the top-most .editorconfig file (do not search in parent directories)
root = true

### All files
[*]
# Force charset utf-8
charset = utf-8
# Indentation
indent_style = tab
indent_size = 4
# line breaks and whitespace
insert_final_newline = true
trim_trailing_whitespace = true
# end_of_line = lf

### Frontend files
[*.{css,scss,less,js,json,ts,sass,php,html,hbs,mustache,phtml,html.twig}]

### Markdown
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false

### YAML
[*.yml]
indent_style = space
indent_size = 2

### Specific files
[{package,bower}.json]
indent_style = space
indent_size = 2
Я не могу найти сочетание клавиш, настройку или что-то еще. Как заставить мое расширение выполнять действия из файла .editorconfig?


Подробнее здесь: https://stackoverflow.com/questions/468 ... es-nothing

Вернуться в «Html»