Format fixture JSON with Prettier. (#8658)

This commit is contained in:
Logan Smyth
2018-09-09 17:57:52 -07:00
committed by GitHub
parent 45c28fa785
commit 79b2af5997
1075 changed files with 2632 additions and 1872 deletions

View File

@@ -1,3 +1,6 @@
{
"plugins": ["external-helpers", ["transform-modules-commonjs", { "strictMode": false }]]
"plugins": [
"external-helpers",
["transform-modules-commonjs", { "strictMode": false }]
]
}

View File

@@ -1,7 +1,3 @@
{
"plugins": [
"transform-modules-commonjs",
"transform-runtime",
"./plugin"
]
"plugins": ["transform-modules-commonjs", "transform-runtime", "./plugin"]
}

View File

@@ -1,5 +1,3 @@
{
"plugins": [
["transform-modules-commonjs", { "mjsStrictNamespace": false }]
]
"plugins": [["transform-modules-commonjs", { "mjsStrictNamespace": false }]]
}

View File

@@ -1,8 +1,3 @@
{
"plugins": [
[
"transform-modules-commonjs",
{ "allowCommonJSExports": false }
]
]
"plugins": [["transform-modules-commonjs", { "allowCommonJSExports": false }]]
}

View File

@@ -1,5 +1,3 @@
{
"plugins": [
"transform-modules-commonjs"
]
"plugins": ["transform-modules-commonjs"]
}

View File

@@ -1,3 +1,6 @@
{
"plugins": ["external-helpers", ["transform-modules-commonjs", { "noInterop": true }]]
"plugins": [
"external-helpers",
["transform-modules-commonjs", { "noInterop": true }]
]
}

View File

@@ -1,6 +1,3 @@
{
"plugins": [
"transform-block-scoping",
"transform-modules-commonjs"
]
"plugins": ["transform-block-scoping", "transform-modules-commonjs"]
}

View File

@@ -1,6 +1,6 @@
{
"plugins": [
["transform-modules-commonjs", {"lazy": true}],
["transform-modules-commonjs", { "lazy": true }],
"external-helpers"
]
}

View File

@@ -1,6 +1,3 @@
{
"plugins": [
"transform-block-scoping",
"transform-modules-commonjs"
]
"plugins": ["transform-block-scoping", "transform-modules-commonjs"]
}

View File

@@ -2,6 +2,9 @@
"plugins": [
"external-helpers",
"syntax-object-rest-spread",
["transform-modules-commonjs", { "strict": true, "mjsStrictNamespace": false }]
[
"transform-modules-commonjs",
{ "strict": true, "mjsStrictNamespace": false }
]
]
}