Skip to content

Commit

Permalink
Remove decoratorsBeforeExports: false from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Aug 16, 2022
1 parent 819d39f commit 5e02340
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 49 deletions.
@@ -1,3 +1,3 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["decorators"]
}
@@ -1,3 +1,3 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["decorators"]
}
@@ -1,3 +1,3 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["decorators"]
}
@@ -1,10 +1,3 @@
{
"plugins": [
[
"decorators",
{
"decoratorsBeforeExport": false
}
]
]
"plugins": ["decorators"]
}
@@ -1,11 +1,4 @@
{
"plugins": [
[
"decorators",
{
"decoratorsBeforeExport": false
}
]
],
"plugins": ["decorators"],
"throws": "Decorators must not be followed by a semicolon. (2:5)"
}
}
@@ -1,3 +1,3 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["decorators"]
}
@@ -1,4 +1,4 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]],
"plugins": ["decorators"],
"createParenthesizedExpressions": true
}
@@ -1,3 +1,3 @@
{
"plugins": [["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["decorators"]
}
@@ -1,11 +1,4 @@
{
"plugins": [
[
"decorators",
{
"decoratorsBeforeExport": false
}
]
],
"plugins": ["decorators"],
"throws": "Leading decorators must be attached to a class declaration. (1:6)"
}
}
@@ -1,11 +1,4 @@
{
"plugins": [
[
"decorators",
{
"decoratorsBeforeExport": false
}
]
],
"plugins": ["decorators"],
"throws": "Leading decorators must be attached to a class declaration. (1:6)"
}
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "@@" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "@@" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "@@" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "^^" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "^^" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,6 +1,6 @@
{
"plugins": [
["pipelineOperator", { "proposal": "hack", "topicToken": "^^" }],
["decorators", { "decoratorsBeforeExport": false }]
"decorators"
]
}
@@ -1,4 +1,4 @@
{
"sourceType": "module",
"plugins": ["flow", ["decorators", { "decoratorsBeforeExport": false }]]
"plugins": ["flow", "decorators"]
}
@@ -1,5 +1,5 @@
{
"sourceType": "module",
"plugins": ["flow", ["decorators", { "decoratorsBeforeExport": false }]],
"plugins": ["flow", "decorators"],
"throws": "Unexpected token (2:10)"
}

0 comments on commit 5e02340

Please sign in to comment.