-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a35008f
commit d5f3171
Showing
6 changed files
with
109 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ Required options: | |
|
||
- **[`parser`](options.md#parser) (or [`filepath`](options.md#file-path))**: One of these options has to be specified for Prettier to know which parser to use. | ||
|
||
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].2/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON. | ||
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].3/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON. | ||
|
||
You need to load the ones that you’re going to use and pass them to `prettier.format` using the `plugins` option. | ||
|
||
|
@@ -29,8 +29,8 @@ See below for examples. | |
### Global | ||
|
||
```html | ||
<script src="https://unpkg.com/[email protected].2/standalone.js"></script> | ||
<script src="https://unpkg.com/[email protected].2/plugins/graphql.js"></script> | ||
<script src="https://unpkg.com/[email protected].3/standalone.js"></script> | ||
<script src="https://unpkg.com/[email protected].3/plugins/graphql.js"></script> | ||
<script> | ||
(async () => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
|
@@ -47,8 +47,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginGraphql from "https://unpkg.com/[email protected].2/plugins/graphql.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginGraphql from "https://unpkg.com/[email protected].3/plugins/graphql.mjs"; | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
parser: "graphql", | ||
|
@@ -61,8 +61,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack | |
|
||
```js | ||
define([ | ||
"https://unpkg.com/[email protected].2/standalone.js", | ||
"https://unpkg.com/[email protected].2/plugins/graphql.js", | ||
"https://unpkg.com/[email protected].3/standalone.js", | ||
"https://unpkg.com/[email protected].3/plugins/graphql.js", | ||
], async (prettier, ...plugins) => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
parser: "graphql", | ||
|
@@ -90,8 +90,8 @@ This syntax doesn’t necessarily work in the browser, but it can be used when b | |
### Worker | ||
|
||
```js | ||
importScripts("https://unpkg.com/[email protected].2/standalone.js"); | ||
importScripts("https://unpkg.com/[email protected].2/plugins/graphql.js"); | ||
importScripts("https://unpkg.com/[email protected].3/standalone.js"); | ||
importScripts("https://unpkg.com/[email protected].3/plugins/graphql.js"); | ||
|
||
(async () => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
|
@@ -107,9 +107,9 @@ If you want to format [embedded code](options.md#embedded-language-formatting), | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs"; | ||
console.log( | ||
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", { | ||
|
@@ -125,10 +125,10 @@ The HTML code embedded in JavaScript stays unformatted because the `html` parser | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs"; | ||
import prettierPluginHtml from "https://unpkg.com/[email protected].2/plugins/html.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs"; | ||
import prettierPluginHtml from "https://unpkg.com/[email protected].3/plugins/html.mjs"; | ||
console.log( | ||
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ Required options: | |
|
||
- **[`parser`](options.md#parser) (or [`filepath`](options.md#file-path))**: One of these options has to be specified for Prettier to know which parser to use. | ||
|
||
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].2/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON. | ||
- **`plugins`**: Unlike the `format` function from the [Node.js-based API](api.md#prettierformatsource--options), this function doesn’t load plugins automatically. The `plugins` option is required because all the parsers included in the Prettier package come as plugins (for reasons of file size). These plugins are files in <https://unpkg.com/browse/[email protected].3/plugins/>. Note that `estree` plugin should be loaded when printing JavaScript, TypeScript, Flow, or JSON. | ||
|
||
You need to load the ones that you’re going to use and pass them to `prettier.format` using the `plugins` option. | ||
|
||
|
@@ -30,8 +30,8 @@ See below for examples. | |
### Global | ||
|
||
```html | ||
<script src="https://unpkg.com/[email protected].2/standalone.js"></script> | ||
<script src="https://unpkg.com/[email protected].2/plugins/graphql.js"></script> | ||
<script src="https://unpkg.com/[email protected].3/standalone.js"></script> | ||
<script src="https://unpkg.com/[email protected].3/plugins/graphql.js"></script> | ||
<script> | ||
(async () => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
|
@@ -48,8 +48,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginGraphql from "https://unpkg.com/[email protected].2/plugins/graphql.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginGraphql from "https://unpkg.com/[email protected].3/plugins/graphql.mjs"; | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
parser: "graphql", | ||
|
@@ -62,8 +62,8 @@ Note that the [`unpkg` field](https://unpkg.com/#examples) in Prettier’s `pack | |
|
||
```js | ||
define([ | ||
"https://unpkg.com/[email protected].2/standalone.js", | ||
"https://unpkg.com/[email protected].2/plugins/graphql.js", | ||
"https://unpkg.com/[email protected].3/standalone.js", | ||
"https://unpkg.com/[email protected].3/plugins/graphql.js", | ||
], async (prettier, ...plugins) => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
parser: "graphql", | ||
|
@@ -91,8 +91,8 @@ This syntax doesn’t necessarily work in the browser, but it can be used when b | |
### Worker | ||
|
||
```js | ||
importScripts("https://unpkg.com/[email protected].2/standalone.js"); | ||
importScripts("https://unpkg.com/[email protected].2/plugins/graphql.js"); | ||
importScripts("https://unpkg.com/[email protected].3/standalone.js"); | ||
importScripts("https://unpkg.com/[email protected].3/plugins/graphql.js"); | ||
|
||
(async () => { | ||
const formatted = await prettier.format("type Query { hello: String }", { | ||
|
@@ -108,9 +108,9 @@ If you want to format [embedded code](options.md#embedded-language-formatting), | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs"; | ||
console.log( | ||
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", { | ||
|
@@ -126,10 +126,10 @@ The HTML code embedded in JavaScript stays unformatted because the `html` parser | |
|
||
```html | ||
<script type="module"> | ||
import * as prettier from "https://unpkg.com/[email protected].2/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].2/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].2/plugins/estree.mjs"; | ||
import prettierPluginHtml from "https://unpkg.com/[email protected].2/plugins/html.mjs"; | ||
import * as prettier from "https://unpkg.com/[email protected].3/standalone.mjs"; | ||
import prettierPluginBabel from "https://unpkg.com/[email protected].3/plugins/babel.mjs"; | ||
import prettierPluginEstree from "https://unpkg.com/[email protected].3/plugins/estree.mjs"; | ||
import prettierPluginHtml from "https://unpkg.com/[email protected].3/plugins/html.mjs"; | ||
console.log( | ||
await prettier.format("const html=/* HTML */ `<DIV> </DIV>`", { | ||
|