diff --git a/README.md b/README.md index 5b31a4c..12fc04a 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,10 @@ You can extend from a configuration in order to simplify manual configuration of For more details on how to extend your configuration from a plugin configuration, please see the [ESLint plugin configuration documentation](https://eslint.org/docs/user-guide/configuring#using-the-configuration-from-a-plugin). - - -| | Name | Description | -| :- | :------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| | Name | Description | +| :--- | :--- | :--- | | ✅ | `recommended` | This configuration includes rules which I recommend to avoid QUnit runtime errors or incorrect behavior, some of which can be difficult to debug. Some of these rules also encourage best practices that help QUnit work better for you. For ESLint `.eslintrc.js` legacy config, extend from `"plugin:qunit/recommended"`. For ESLint `eslint.config.js` flat config, load from `require('eslint-plugin-qunit/configs/recommended')`. | - - ## Rules diff --git a/index.js b/index.js index c62b000..49b5baf 100644 --- a/index.js +++ b/index.js @@ -21,11 +21,6 @@ module.exports = { // eslint-disable-next-line sort-keys configs: { recommended: { - description: [ - "This configuration includes rules which I recommend to avoid QUnit runtime errors or incorrect behavior, some of which can be difficult to debug. Some of these rules also encourage best practices that help QUnit work better for you.", - 'For ESLint `.eslintrc.js` legacy config, extend from `"plugin:qunit/recommended"`.', - "For ESLint `eslint.config.js` flat config, load from `require('eslint-plugin-qunit/configs/recommended')`.", - ].join(" "), plugins: ["qunit"], rules: { "qunit/assert-args": "error",