Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tags and warnings #1991

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions modules/friendlytag.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ Twinkle.tag.article.tagList = {
{ tag: 'Fiction', description: 'fails to distinguish between fact and fiction' },
{ tag: 'In-universe', description: 'subject is fictional and needs rewriting to provide a non-fictional perspective' },
{ tag: 'Long plot', description: 'plot summary is too long or excessively detailed' },
{ tag: 'More plot', description: 'plot summary is insufficient' },
{ tag: 'No plot', description: 'needs a plot summary' }
]
},
Expand Down
82 changes: 82 additions & 0 deletions modules/twinklewarn.js
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,20 @@ Twinkle.warn.messages = {
}
},
'Behavior in articles': {
'uw-ai': {
level1: {
label: 'Using a large language model',
summary: 'General note: Using a large language model'
},
level2: {
label: 'Using a large language model',
summary: 'Caution: Using a large language model'
},
level3: {
label: 'Using a large language model',
summary: 'Warning: Using a large language model'
}
},
'uw-biog': {
level1: {
label: 'Adding unreferenced controversial information about living persons',
Expand Down Expand Up @@ -503,6 +517,20 @@ Twinkle.warn.messages = {
summary: 'Final warning: Subtle vandalism'
}
},
'uw-talkinarticle': {
level1: {
label: 'Adding commentary to an article',
summary: 'General note: Adding commentary to an article'
},
level2: {
label: 'Adding commentary to an article',
summary: 'Caution: Adding commentary to an article'
},
level3: {
label: 'Adding commentary to an article',
summary: 'Warning: Adding commentary to an article'
}
},
'uw-tdel': {
level1: {
label: 'Removal of maintenance templates',
Expand Down Expand Up @@ -847,6 +875,26 @@ Twinkle.warn.messages = {
summary: 'Only warning: Creating inappropriate pages'
}
},
'uw-fv': {
level1: {
label: 'Added statement had source, but it did not verify content',
summary: 'General note: Added statement had source, but it did not verify content'
}
},
'uw-mislead': {
level1: {
label: 'Using misleading edit summaries',
summary: 'General note: Using misleading edit summaries'
},
level2: {
label: 'Using misleading edit summaries',
summary: 'Caution: Using misleading edit summaries'
},
level3: {
label: 'Using misleading edit summaries',
summary: 'Warning: Using misleading edit summaries'
}
},
'uw-mos': {
level1: {
label: 'Manual of style',
Expand Down Expand Up @@ -887,6 +935,28 @@ Twinkle.warn.messages = {
summary: 'Only warning: Page moves against naming conventions or consensus'
}
},
'uw-redirect': {
level1: {
label: 'Creating inappropriate redirects',
summary: 'General note: Creating inappropriate redirects'
},
level2: {
label: 'Creating inappropriate redirects',
summary: 'Caution: Creating inappropriate redirects'
},
level3: {
label: 'Creating inappropriate redirects',
summary: 'Warning: Creating inappropriate redirects'
},
level4: {
label: 'Creating inappropriate redirects',
summary: 'Final warning: Creating inappropriate redirects'
},
level4im: {
label: 'Creating inappropriate redirects',
summary: 'Only warning: Creating inappropriate redirects'
}
},
'uw-tpv': {
level1: {
label: "Refactoring others' talk page comments",
Expand Down Expand Up @@ -960,6 +1030,10 @@ Twinkle.warn.messages = {
label: 'Adding inappropriate entries to lists',
summary: 'Notice: Adding inappropriate entries to lists'
},
'uw-bareurl': {
label: 'Adding a bare URL',
summary: 'Notice: Adding a bare URL'
},
'uw-bite': {
label: '"Biting" newcomers',
summary: 'Notice: "Biting" newcomers',
Expand Down Expand Up @@ -1058,6 +1132,10 @@ Twinkle.warn.messages = {
label: 'Incorrect use of minor edits check box',
summary: 'Notice: Incorrect use of minor edits check box'
},
'uw-multiple-accts': {
label: 'Inappropriate use of alternative accounts',
summary: 'Notice: Inappropriate use of alternative accounts'
},
'uw-notenglish': {
label: 'Creating non-English articles',
summary: 'Notice: Creating non-English articles'
Expand Down Expand Up @@ -1169,6 +1247,10 @@ Twinkle.warn.messages = {
label: 'Canvassing',
summary: 'Warning: Canvassing'
},
'uw-circular': {
label: 'Using circular sources',
summary: 'Notice: Using circular sources'
},
'uw-copyright': {
label: 'Copyright violation',
summary: 'Warning: Copyright violation'
Expand Down
Loading