Skip to content

Commit fd9f274

Browse files
author
Josh Goldberg
committed
Accepted new end-to-end baselines
1 parent 8b0f6dd commit fd9f274

File tree

9 files changed

+49
-4
lines changed

9 files changed

+49
-4
lines changed

test/tests/custom eslint path/eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ module.exports = {
2222
"no-empty": "off",
2323
"no-empty-functions": "off",
2424
"no-magic-numbers": "off",
25+
"padding-line-between-statements": [
26+
"off",
27+
"error",
28+
{
29+
"blankLine": "always",
30+
"prev": "*",
31+
"next": "return"
32+
}
33+
],
2534
"prefer-template": "off",
2635
"@typescript-eslint/tslint/config": [
2736
"error",

test/tests/custom eslint path/expected.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ module.exports = {
2222
"no-empty": "off",
2323
"no-empty-functions": "off",
2424
"no-magic-numbers": "off",
25+
"padding-line-between-statements": [
26+
"off",
27+
"error",
28+
{
29+
"blankLine": "always",
30+
"prev": "*",
31+
"next": "return"
32+
}
33+
],
2534
"prefer-template": "off",
2635
"@typescript-eslint/tslint/config": [
2736
"error",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
17 rules replaced with their ESLint equivalents. ✨
1+
18 rules replaced with their ESLint equivalents. ✨
22
️👀 2 rules do not yet have ESLint equivalents; defaulting to eslint-plugin-tslint. 👀
33
✅ All is well! ✅

test/tests/custom package path/eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ module.exports = {
3030
"no-empty": "off",
3131
"no-empty-functions": "off",
3232
"no-magic-numbers": "off",
33+
"padding-line-between-statements": [
34+
"off",
35+
"error",
36+
{
37+
"blankLine": "always",
38+
"prev": "*",
39+
"next": "return"
40+
}
41+
],
3342
"prefer-template": "off",
3443
"@typescript-eslint/tslint/config": [
3544
"error",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
17 rules replaced with their ESLint equivalents. ✨
1+
18 rules replaced with their ESLint equivalents. ✨
22
️👀 2 rules do not yet have ESLint equivalents; defaulting to eslint-plugin-tslint. 👀
33
✅ All is well! ✅

test/tests/custom typescript path/eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ module.exports = {
2929
"no-empty": "off",
3030
"no-empty-functions": "off",
3131
"no-magic-numbers": "off",
32+
"padding-line-between-statements": [
33+
"off",
34+
"error",
35+
{
36+
"blankLine": "always",
37+
"prev": "*",
38+
"next": "return"
39+
}
40+
],
3241
"prefer-template": "off",
3342
"@typescript-eslint/tslint/config": [
3443
"error",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
17 rules replaced with their ESLint equivalents. ✨
1+
18 rules replaced with their ESLint equivalents. ✨
22
️👀 2 rules do not yet have ESLint equivalents; defaulting to eslint-plugin-tslint. 👀
33
✅ All is well! ✅

test/tests/standalone tslint.json/eslintrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ module.exports = {
3030
"no-empty": "off",
3131
"no-empty-functions": "off",
3232
"no-magic-numbers": "off",
33+
"padding-line-between-statements": [
34+
"off",
35+
"error",
36+
{
37+
"blankLine": "always",
38+
"prev": "*",
39+
"next": "return"
40+
}
41+
],
3342
"prefer-template": "off",
3443
"@typescript-eslint/tslint/config": [
3544
"error",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
17 rules replaced with their ESLint equivalents. ✨
1+
18 rules replaced with their ESLint equivalents. ✨
22
️👀 2 rules do not yet have ESLint equivalents; defaulting to eslint-plugin-tslint. 👀
33
✅ All is well! ✅

0 commit comments

Comments
 (0)