Bug 1578564 - Workaround a prettier warning so that we can run it on html/xhtml files. r=vporof

Differential Revision: https://phabricator.services.mozilla.com/D44555

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mark Banner 2019-09-04 06:59:03 +00:00
Родитель 298b98043f
Коммит 65633fd59e
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,9 @@
{
"printWidth": 80,
"tabWidth": 2,
"trailingComma": "es5"
"trailingComma": "es5",
"overrides": [{
"files": ["*.html", "*.xhtml"],
"options": { "parser": "babel" }
}]
}