-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Open
Labels
A-new-lintArea: new lintArea: new lintS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.
Description
What it does
Checks for feature names with prefix use-
, with-
or suffix -support
Advantage
These prefixes and suffixes have no significant meaning.
Drawbacks
No response
Example
[features]
default = ["use-abc", "with-def", "ghi-support"]
use-abc = [] // redundant
with-def = [] // redundant
ghi-support = [] // redundant
Could be written as:
[features]
default = ["abc", "def", "ghi"]
abc = []
def = []
ghi = []
Metadata
Metadata
Assignees
Labels
A-new-lintArea: new lintArea: new lintS-triageStatus: This issue is waiting on initial triage.Status: This issue is waiting on initial triage.