Skip to content
Merged
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
18 changes: 9 additions & 9 deletions scripts/rsr-verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ check "Overflow checking enabled" "grep -q 'gnoto' hinfo_loc_fluctuator_ada/hinf
echo ""

echo "📊 Category 3: Documentation (10 points)"
check "README.md exists" "[ -f README.md ]" 1 "Documentation"
check "SECURITY.md exists" "[ -f SECURITY.md ]" 2 "Documentation"
check "CONTRIBUTING.md exists" "[ -f CONTRIBUTING.md ]" 2 "Documentation"
check "CODE_OF_CONDUCT.md exists" "[ -f CODE_OF_CONDUCT.md ]" 2 "Documentation"
check "MAINTAINERS.md exists" "[ -f MAINTAINERS.md ]" 1 "Documentation"
check "CHANGELOG.md exists" "[ -f CHANGELOG.md ]" 2 "Documentation"
check "README.adoc exists" "[ -f README.adoc ]" 1 "Documentation"
check "SECURITY.adoc exists" "[ -f SECURITY.adoc ]" 2 "Documentation"
check "CONTRIBUTING.adoc exists" "[ -f CONTRIBUTING.adoc ]" 2 "Documentation"
check "CODE_OF_CONDUCT.adoc exists" "[ -f CODE_OF_CONDUCT.adoc ]" 2 "Documentation"
check "MAINTAINERS.adoc exists" "[ -f MAINTAINERS.adoc ]" 1 "Documentation"
check "CHANGELOG.adoc exists" "[ -f CHANGELOG.adoc ]" 2 "Documentation"
echo ""

echo "📊 Category 4: .well-known/ Directory (10 points)"
Expand All @@ -115,9 +115,9 @@ check "RSR self-verification" "[ -f scripts/rsr-verify.sh ]" 3 "Testing"
echo ""

echo "📊 Category 7: TPCF (10 points)"
check "TPCF.md exists" "[ -f TPCF.md ]" 5 "TPCF"
check "TPCF perimeters defined" "grep -q 'Perimeter 1' TPCF.md" 3 "TPCF"
check "Community Sandbox documented" "grep -q 'Perimeter 3' TPCF.md" 2 "TPCF"
check "TPCF.adoc exists" "[ -f TPCF.adoc ]" 5 "TPCF"
check "TPCF perimeters defined" "grep -q 'Perimeter 1' TPCF.adoc" 3 "TPCF"
check "Community Sandbox documented" "grep -q 'Perimeter 3' TPCF.adoc" 2 "TPCF"
echo ""

echo "📊 Category 8: Dependencies (10 points)"
Expand Down
Loading