Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sp-quiz
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yannick Vollmer
sp-quiz
Commits
e6138024
Commit
e6138024
authored
1 year ago
by
Philip Kaluđerčić
Browse files
Options
Downloads
Patches
Plain Diff
Warn if a comment starts with a wrong interjection
parent
634b53af
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gen.pl
+10
-0
10 additions, 0 deletions
gen.pl
with
10 additions
and
0 deletions
gen.pl
+
10
−
0
View file @
e6138024
...
...
@@ -37,6 +37,16 @@ sub add {
return
unless
%last_option
;
if
(
$last_option
{"
comment
"})
{
if
(
defined
$last_option
{"
correct
"})
{
if
((
$last_option
{"
correct
"}
eq
JSON::
true
)
and
(
$last_option
{"
comment
"}
=~
/^\s*Nein,/
))
{
warn
"
$ARGV
:$.: Correct answer starting with
\"
Nein
\"\n
";
}
if
((
$last_option
{"
correct
"}
eq
JSON::
false
)
and
(
$last_option
{"
comment
"}
=~
/^\s*Ja,/
))
{
warn
"
$ARGV
:$.: Wrong answer starting with
\"
Ja
\"\n
";
}
}
$last_option
{"
comment
"}
=
md
(
$last_option
{"
comment
"});
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment