Remove obsolete max-len eslint rule and reformat some stuff to fit (#7602)

This commit is contained in:
Daniel Tschinder
2018-03-20 14:51:47 +01:00
committed by Brian Ng
parent 6d6fe844fd
commit f0d681a238
14 changed files with 62 additions and 55 deletions

View File

@@ -243,7 +243,6 @@ describe("addon resolution", function() {
babelrc: false,
presets: ["foo"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-preset-foo'.*\n- If you want to resolve "foo", use "module:foo"/,
);
@@ -258,7 +257,6 @@ describe("addon resolution", function() {
babelrc: false,
plugins: ["foo"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-plugin-foo'.*\n- If you want to resolve "foo", use "module:foo"/,
);
@@ -273,7 +271,6 @@ describe("addon resolution", function() {
babelrc: false,
presets: ["foo"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-preset-foo'.*\n- Did you mean "@babel\/foo"\?/,
);
@@ -288,7 +285,6 @@ describe("addon resolution", function() {
babelrc: false,
plugins: ["foo"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-plugin-foo'.*\n- Did you mean "@babel\/foo"\?/,
);
@@ -303,7 +299,6 @@ describe("addon resolution", function() {
babelrc: false,
presets: ["testplugin"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-preset-testplugin'.*\n- Did you accidentally pass a preset as a plugin\?/,
);
@@ -318,7 +313,6 @@ describe("addon resolution", function() {
babelrc: false,
plugins: ["testpreset"],
});
// eslint-disable-next-line max-len
}).toThrow(
/Cannot find module 'babel-plugin-testpreset'.*\n- Did you accidentally pass a plugin as a preset\?/,
);