@qualweb/earl-reporter 0.3.0 → 0.4.2
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/LICENSE +14 -14
- package/README.md +68 -68
- package/dist/contants.d.ts +941 -0
- package/dist/contants.d.ts.map +1 -0
- package/dist/contants.js +945 -0
- package/dist/contants.js.map +1 -0
- package/dist/index.d.ts +6 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +155 -134
- package/dist/index.js.map +1 -1
- package/package.json +63 -51
- package/.eslintignore +0 -3
- package/.eslintrc +0 -19
- package/.prettierrc +0 -6
- package/CHANGELOG +0 -86
- package/dist/lib/act-rules.reporter.d.ts +0 -6
- package/dist/lib/act-rules.reporter.d.ts.map +0 -1
- package/dist/lib/act-rules.reporter.js +0 -59
- package/dist/lib/act-rules.reporter.js.map +0 -1
- package/dist/lib/best-practices.reporter.d.ts +0 -6
- package/dist/lib/best-practices.reporter.d.ts.map +0 -1
- package/dist/lib/best-practices.reporter.js +0 -58
- package/dist/lib/best-practices.reporter.js.map +0 -1
- package/dist/lib/wcag-techniques.reporter.d.ts +0 -6
- package/dist/lib/wcag-techniques.reporter.d.ts.map +0 -1
- package/dist/lib/wcag-techniques.reporter.js +0 -59
- package/dist/lib/wcag-techniques.reporter.js.map +0 -1
- package/src/index.ts +0 -130
- package/src/lib/act-rules.reporter.ts +0 -61
- package/src/lib/best-practices.reporter.ts +0 -58
- package/src/lib/wcag-techniques.reporter.ts +0 -58
- package/test/modules.spec.js +0 -286
- package/test/report.spec.js +0 -665
- package/tsconfig.json +0 -38
package/tsconfig.json
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
/* Basic Options */
|
|
5
|
-
"declaration": true /* Generates corresponding '.d.ts' file. */,
|
|
6
|
-
"declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
|
|
7
|
-
"sourceMap": true /* Generates corresponding '.map' file. */,
|
|
8
|
-
"outDir": "./dist" /* Redirect output structure to the directory. */,
|
|
9
|
-
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
|
|
10
|
-
"removeComments": true /* Do not emit comments to output. */,
|
|
11
|
-
|
|
12
|
-
/* Strict Type-Checking Options */
|
|
13
|
-
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
|
|
14
|
-
"strictNullChecks": true /* Enable strict null checks. */,
|
|
15
|
-
"strictFunctionTypes": true /* Enable strict checking of function types. */,
|
|
16
|
-
"strictBindCallApply": true /* Enable strict 'bind', 'call', and 'apply' methods on functions. */,
|
|
17
|
-
"strictPropertyInitialization": true /* Enable strict checking of property initialization in classes. */,
|
|
18
|
-
"noImplicitThis": true /* Raise error on 'this' expressions with an implied 'any' type. */,
|
|
19
|
-
"alwaysStrict": true /* Parse in strict mode and emit "use strict" for each source file. */,
|
|
20
|
-
|
|
21
|
-
/* Additional Checks */
|
|
22
|
-
"noUnusedLocals": true /* Report errors on unused locals. */,
|
|
23
|
-
"noUnusedParameters": true /* Report errors on unused parameters. */,
|
|
24
|
-
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
|
|
25
|
-
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
|
|
26
|
-
|
|
27
|
-
/* Module Resolution Options */
|
|
28
|
-
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
|
|
29
|
-
"typeRoots": [
|
|
30
|
-
"@qualweb/types"
|
|
31
|
-
] /* List of folders to include type definitions from. */,
|
|
32
|
-
"types": [
|
|
33
|
-
"@qualweb/types",
|
|
34
|
-
"node",
|
|
35
|
-
"lodash.clonedeep"
|
|
36
|
-
] /* Type declaration files to be included in compilation. */
|
|
37
|
-
}
|
|
38
|
-
}
|