Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bep/docuapi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.prettierrc')
-rw-r--r--.prettierrc20
1 files changed, 20 insertions, 0 deletions
diff --git a/.prettierrc b/.prettierrc
new file mode 100644
index 0000000..bb762aa
--- /dev/null
+++ b/.prettierrc
@@ -0,0 +1,20 @@
+{
+ "overrides": [
+ {
+ "files": ["*.html"],
+ "options": {
+ "parser": "go-template",
+ "goTemplateBracketSpacing": true,
+ "bracketSameLine": true
+ }
+ },
+ {
+ "files": ["*.js", "*.ts"],
+ "options": {
+ "useTabs": true,
+ "printWidth": 120,
+ "singleQuote": true
+ }
+ }
+ ]
+}