Skip to content

Commit 1c91671

Browse files
committed
fixup! tools: enable linter in test/fixtures/errors
1 parent dc1485a commit 1c91671

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: test/fixtures/errors/throw_in_line_with_tabs.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22-
22+
/* eslint-disable @stylistic/js/indent, @stylistic/js/no-tabs */
2323
'use strict';
2424
require('../../common');
2525

2626
console.error('before');
2727

2828
(function() {
29-
// These lines should contain tab!
30-
// eslint-disable-next-line no-throw-literal
31-
throw ({ foo: 'bar' });
29+
// These lines should contain tab!
30+
// eslint-disable-next-line no-throw-literal
31+
throw ({ foo: 'bar' });
3232
})();
3333

3434
console.error('after');

0 commit comments

Comments
 (0)