testilo 41.5.8 → 41.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
// Module to keep secrets.
|
|
28
28
|
require('dotenv').config();
|
|
29
29
|
// Module to classify tool rules into issues
|
|
30
|
-
const {issues} = require('../../score/
|
|
30
|
+
const {issues} = require('../../score/tic49');
|
|
31
31
|
// Module to process files.
|
|
32
32
|
const fs = require('fs/promises');
|
|
33
33
|
// Utility module.
|
package/procs/score/tic49.js
CHANGED
|
@@ -3583,7 +3583,7 @@ exports.issues = {
|
|
|
3583
3583
|
quality: 1,
|
|
3584
3584
|
what: 'Attribute not allowed here'
|
|
3585
3585
|
},
|
|
3586
|
-
'^Attribute .+ is not serializable as XML 1
|
|
3586
|
+
'^Attribute .+ is not serializable as XML 1[.]0.*$': {
|
|
3587
3587
|
variable: true,
|
|
3588
3588
|
quality: 1,
|
|
3589
3589
|
what: 'Attribute is invalidly nonserializable'
|
|
@@ -5731,7 +5731,7 @@ exports.issues = {
|
|
|
5731
5731
|
quality: 1,
|
|
5732
5732
|
what: 'Table row has a column count larger than that of the first row'
|
|
5733
5733
|
},
|
|
5734
|
-
'^Table column
|
|
5734
|
+
'^Table column [0-9]+ established by element td has no cells beginning in it.*$': {
|
|
5735
5735
|
variable: true,
|
|
5736
5736
|
quality: 1,
|
|
5737
5737
|
what: 'Element is td but the prior cells in its table column do not exist'
|
|
@@ -8959,7 +8959,7 @@ exports.issues = {
|
|
|
8959
8959
|
weight: 3,
|
|
8960
8960
|
tools: {
|
|
8961
8961
|
nuVal: {
|
|
8962
|
-
'^Bad value [
|
|
8962
|
+
'^Bad value [^ ]+ Tab, new line or carriage return found.*$': {
|
|
8963
8963
|
variable: true,
|
|
8964
8964
|
quality: 1,
|
|
8965
8965
|
what: 'Attribute value contains an illegal spacing character'
|
|
@@ -9124,12 +9124,12 @@ exports.issues = {
|
|
|
9124
9124
|
quality: 1,
|
|
9125
9125
|
what: 'Comment is missing a valid termination'
|
|
9126
9126
|
},
|
|
9127
|
-
'^Element name .+ cannot be represented as XML 1
|
|
9127
|
+
'^Element name .+ cannot be represented as XML 1[.]0.*$': {
|
|
9128
9128
|
variable: true,
|
|
9129
9129
|
quality: 1,
|
|
9130
9130
|
what: 'Invalid element name'
|
|
9131
9131
|
},
|
|
9132
|
-
'^Quote . in attribute name
|
|
9132
|
+
'^Quote . in attribute name[.] Probable cause: Matching quote missing somewhere earlier.*$': {
|
|
9133
9133
|
variable: true,
|
|
9134
9134
|
quality: 1,
|
|
9135
9135
|
what: 'Attribute name includes an apostrophe or double quotation mark'
|