aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/headingGuidelines.json
diff options
context:
space:
mode:
Diffstat (limited to 'exampleData/ruleSets/headingGuidelines.json')
-rw-r--r--exampleData/ruleSets/headingGuidelines.json41
1 files changed, 0 insertions, 41 deletions
diff --git a/exampleData/ruleSets/headingGuidelines.json b/exampleData/ruleSets/headingGuidelines.json
deleted file mode 100644
index d409208..0000000
--- a/exampleData/ruleSets/headingGuidelines.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{ 'name': 'Heading Guidelines'
-, 'description': 'Guidelines pertaining to the formatting and content of headings'
-, 'rules': [
-//------------
- { 'id': 7040001
- , 'name': 'Headings are capitalized'
- , 'description': 'Check to see if all headings use leading capital letters'
- , 'rule':
- function() {
- var badHeadings =
- fiveui.query(':header').filter(
- function(idx) {
- var ch = $(this).text()[0];
- if (ch) {
- return (ch == ch.toLowerCase());
- } else {
- return false;
- }
- });
- $(badHeadings).map(function(idx, elt) {
- report('Heading does not start with a capital letter', elt);
- });
-
- }
- },
-//------------
- { 'id': 7040002
- , 'name': 'Disallow Empty Headers'
- , 'description': 'Heading elements should contain text'
- , 'rule': function() {
- fiveui.query(':header').each(
- function(ix, elt) {
- if ($(elt).text() == '') {
- report('Heading does not contain text', elt);
- }
- });
- }
- }//,
-//------------
-]
-}