summaryrefslogtreecommitdiff
path: root/.dprint.json
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-05-06 00:22:24 -0400
committerGitHub <noreply@github.com>2021-05-06 13:22:24 +0900
commita9c58d5e51d5d7060abdd6d6b3de12e98e960ef6 (patch)
treea6ad3e8ea99ddc4876f2c37d8ea453362ec92819 /.dprint.json
parent4f5b4f9cee66169728c909f5e53a1f8a6a326f6d (diff)
chore: upgrade dprint 0.13.1 to fix CI. (#10513)
Diffstat (limited to '.dprint.json')
-rw-r--r--.dprint.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/.dprint.json b/.dprint.json
new file mode 100644
index 000000000..340693e0d
--- /dev/null
+++ b/.dprint.json
@@ -0,0 +1,42 @@
+{
+ "$schema": "https://dprint.dev/schemas/v0.json",
+ "projectType": "openSource",
+ "incremental": true,
+ "typescript": {
+ "deno": true
+ },
+ "markdown": {
+ "deno": true
+ },
+ "json": {
+ "deno": true
+ },
+ "includes": ["**/*.{ts,tsx,js,jsx,json,md}"],
+ "excludes": [
+ ".cargo_home",
+ ".git",
+ "cli/dts/lib.d.ts",
+ "cli/dts/lib.dom*",
+ "cli/dts/lib.es*",
+ "cli/dts/lib.scripthost.d.ts",
+ "cli/dts/lib.webworker*.d.ts",
+ "cli/dts/typescript.d.ts",
+ "cli/tests/encoding",
+ "cli/tests/inline_js_source_map*",
+ "cli/tests/badly_formatted.md",
+ "cli/tests/badly_formatted.json",
+ "cli/tsc/*typescript.js",
+ "test_util/std",
+ "test_util/wpt",
+ "gh-pages",
+ "target",
+ "third_party",
+ "tools/wpt/expectation.json",
+ "tools/wpt/manifest.json"
+ ],
+ "plugins": [
+ "https://plugins.dprint.dev/typescript-0.44.2.wasm",
+ "https://plugins.dprint.dev/json-0.10.2.wasm",
+ "https://plugins.dprint.dev/markdown-0.7.1.wasm"
+ ]
+}