move all plugin tests out of babel-core and into their appropriate folders

This commit is contained in:
Sebastian McKenzie
2015-11-08 23:04:10 -08:00
parent 5f40b53dee
commit 15969a0904
1189 changed files with 365 additions and 65 deletions

View File

@@ -0,0 +1,4 @@
Math.max(1,
2,
3,
);

View File

@@ -0,0 +1,8 @@
function thisIsAFunctionWithAVeryLongNameAndWayTooManyParameters(
thisIsTheFirstParameter, andThisOneIsRelatedToIt,
butNotThisOne,
andNeitherThis,
inFactThereArentThatManyParameters,
) {
throw null;
}

View File

@@ -0,0 +1,3 @@
function thisIsAFunctionWithAVeryLongNameAndWayTooManyParameters(thisIsTheFirstParameter, andThisOneIsRelatedToIt, butNotThisOne, andNeitherThis, inFactThereArentThatManyParameters) {
throw null;
}

View File

@@ -0,0 +1,3 @@
{
"plugins": ["syntax-trailing-function-commas"]
}