We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use-with-caution
1 parent 41104b3 commit 1a61299Copy full SHA for 1a61299
src/app-state/eslint.js
@@ -24,8 +24,12 @@ const ruleCategories = (() => {
24
name: "Priority C: Recommended",
25
rules: [],
26
},
27
- "unspecified": {
28
- name: "Unspecified yet",
+ "use-with-caution": {
+ name: "Priority D: Use with Caution",
29
+ rules: [],
30
+ },
31
+ "uncategorized": {
32
+ name: "Uncategorized",
33
34
35
"base": {
@@ -44,7 +48,7 @@ const ruleCategories = (() => {
44
48
continue
45
49
}
46
50
const category = name.startsWith("vue/")
47
- ? categoryMap[meta.docs.category] || categoryMap.unspecified
51
+ ? categoryMap[meta.docs.category] || categoryMap.uncategorized
52
: categoryMap.core
53
54
category.rules.push({
0 commit comments