Skip to content

Commit

Permalink
Prepare 6.1.0 (#62)
Browse files Browse the repository at this point in the history
- Update changelog
- Update dependencies
- Update ESLint config
- Install `eslint-plugin-jest` explicitly
  • Loading branch information
ybiquitous authored Feb 17, 2023
1 parent 8ae04e1 commit 5e2da08
Show file tree
Hide file tree
Showing 4 changed files with 1,549 additions and 1,330 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Head
## 6.1.0

- Added: support for custom unfixable error messages.
- Fixed: false negatives for `invalidOptionWarnings`.
Expand Down
5 changes: 3 additions & 2 deletions getTestRule.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
'use strict';

const util = require('util');
// eslint-disable-next-line node/no-unpublished-require -- Avoid auto-install of `stylelint` peer dependency.
const { lint } = require('stylelint');

// @ts-expect-error -- TS2614: Module '"stylelint"' has no exported member 'lint'. Did you mean to use 'import lint from "stylelint"' instead?
const { lint } = require('stylelint'); // eslint-disable-line node/no-unpublished-require -- Avoid auto-install of `stylelint` peer dependency.

/**
* @typedef {import('.').TestCase} TestCase
Expand Down
Loading

0 comments on commit 5e2da08

Please sign in to comment.