Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ The default settings don't conflict, and Prettier plugins can quickly fix up ord
| Name                         | Description | 💼 | 🔧 | 💡 | ❌ |
| :------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------ | :--- | :- | :- | :- |
| [no-empty-fields](docs/rules/no-empty-fields.md) | Reports on unnecessary empty arrays and objects. | ✔️ ✅ | | 💡 | |
| [no-redundant-files](docs/rules/no-redundant-files.md) | Prevents adding unnecessary / redundant files. | | | 💡 | |
| [no-redundant-files](docs/rules/no-redundant-files.md) | Prevents adding unnecessary / redundant files. | ✔️ ✅ | | 💡 | |
| [order-properties](docs/rules/order-properties.md) | Package properties must be declared in standard order | ✔️ ✅ | 🔧 | | |
| [repository-shorthand](docs/rules/repository-shorthand.md) | Enforce either object or shorthand declaration for repository. | ✔️ ✅ | 🔧 | | |
| [require-author](docs/rules/require-author.md) | Requires the `author` property to be present. | | | | |
Expand Down
2 changes: 2 additions & 0 deletions docs/rules/no-redundant-files.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# no-redundant-files

💼 This rule is enabled in the following configs: ✔️ `legacy-recommended`, ✅ `recommended`.

💡 This rule is manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).

<!-- end auto-generated rule header -->
Expand Down
2 changes: 1 addition & 1 deletion src/rules/no-redundant-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export const rule = createRule({
docs: {
category: "Best Practices",
description: "Prevents adding unnecessary / redundant files.",
recommended: false,
recommended: true,
},
hasSuggestions: true,
messages: {
Expand Down
Loading