Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 516a265

Browse files
committed
Chore: Copy formatter files from eslint-plugin-episerver-cms
The tests/fixtures/output.* files are the formatted versions of the results from the same source as the tests/fixtures/input.json so they will serve as regression tests initially.
1 parent 12a2824 commit 516a265

10 files changed

+648
-116
lines changed

docs/README.md

+99
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
# Formatters
2+
3+
There are several formatters and they can be used with the `-f` flag when calling ESLint. They reside in `./node_modules/eslint-plugin-episerver-cms/formatters/`.
4+
5+
## Summary format
6+
7+
Usage:
8+
9+
```
10+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/summary.js
11+
```
12+
13+
Result:
14+
15+
![formatter:summary output](summary.png)
16+
17+
18+
## Table format
19+
20+
Used by the `summary` formatter.
21+
22+
Usage:
23+
24+
```
25+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/table.js
26+
```
27+
28+
29+
## CSV format
30+
31+
This is the preferred format if you want to send us your usage. Outputed file can be commited to track progress in lowering usage of internal and deprecated API's.
32+
33+
Usage:
34+
35+
```
36+
# Output to console
37+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/csv.js
38+
39+
# Output to file
40+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/csv.js -o epi-module-usage.csv
41+
```
42+
43+
Result:
44+
45+
```csv
46+
Rule,Module name,Usage count
47+
no-deprecated-episerver-apis,epi/shell/widget/_ActionProviderWidget,3
48+
no-deprecated-episerver-apis,epi-cms/store/CustomQueryEngine,2
49+
no-internal-episerver-apis,epi-cms/contentediting/NotificationBar,8
50+
no-internal-episerver-apis,epi/shell/widget/_ModelBindingMixin,8
51+
```
52+
53+
54+
## JSON format
55+
56+
Outputed file can be commited to track progress in lowering usage of internal and deprecated API's.
57+
58+
Usage:
59+
60+
```
61+
# Output to console
62+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/json.js
63+
64+
# Output to file
65+
$ eslint . -f ./node_modules/eslint-plugin-episerver-cms/formatters/json.js -o epi-module-usage.json
66+
```
67+
68+
Result:
69+
70+
```json
71+
[
72+
{
73+
"rule": "no-deprecated-episerver-apis",
74+
"violations": [
75+
{
76+
"module": "epi/shell/widget/_ActionProviderWidget",
77+
"usages": 3
78+
},
79+
{
80+
"module": "epi-cms/store/CustomQueryEngine",
81+
"usages": 2
82+
}
83+
]
84+
},
85+
{
86+
"rule": "no-internal-episerver-apis",
87+
"violations": [
88+
{
89+
"module": "epi-cms/contentediting/NotificationBar",
90+
"usages": 8
91+
},
92+
{
93+
"module": "epi/shell/widget/_ModelBindingMixin",
94+
"usages": 17
95+
},
96+
]
97+
}
98+
]
99+
```

docs/summary.png

26.7 KB
Loading

lib/csv.js

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
const normalizer = require("./normalized");
2+
3+
/* FORMAT (ordered by module name):
4+
Rule,Module name,Usage count
5+
no-deprecated-episerver-apis,epi/shell/widget/_ActionProviderWidget,3
6+
no-deprecated-episerver-apis,epi-cms/store/CustomQueryEngine,2
7+
no-internal-episerver-apis,epi-cms/contentediting/NotificationBar,8
8+
no-internal-episerver-apis,epi/shell/widget/_ModelBindingMixin,17
9+
*/
10+
11+
module.exports = function (results) {
12+
return normalizer(results)
13+
.reduce((results, summary) => {
14+
return results.concat(
15+
summary.violations.map(violation => {
16+
return `${summary.rule},${violation.module},${violation.usages}`;
17+
})
18+
)
19+
}, ["Rule,Module name,Usage count"])
20+
.join("\n");
21+
};

lib/eslint-json-parser.js

-116
This file was deleted.

lib/json.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
const normalizer = require("./normalized");
2+
3+
/* FORMAT (pretty printed version of 'normalized'):
4+
[
5+
{
6+
"rule": "no-deprecated-episerver-apis",
7+
"violations": [
8+
{
9+
"module": "epi/shell/widget/_ActionProviderWidget",
10+
"usages": 3
11+
},
12+
{
13+
"module": "epi-cms/store/CustomQueryEngine",
14+
"usages": 2
15+
}
16+
]
17+
},
18+
{
19+
"rule": "no-internal-episerver-apis",
20+
"violations": [
21+
{
22+
"module": "epi/shell/widget/dialog/_DialogContentMixin":,
23+
"usages": 5
24+
}
25+
]
26+
}
27+
]
28+
*/
29+
30+
module.exports = function (results) {
31+
return JSON.stringify(normalizer(results), null, 4);
32+
};

lib/normalized.js

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
module.exports = function (results) {
2+
3+
/* FORMAT (A sorted array, with nested elements for rule violations that are sorted by module name for minimal git diffs when commiting the csv or json results):
4+
[
5+
{
6+
rule: "no-deprecated-episerver-apis",
7+
violations: [
8+
{
9+
module: "epi-cms/store/CustomQueryEngine",
10+
usages: 2
11+
},
12+
{
13+
module: "epi/shell/widget/_ActionProviderWidget",
14+
usages: 3
15+
}
16+
]
17+
},
18+
{
19+
rule: "no-internal-episerver-apis",
20+
violations: [
21+
{
22+
module: "epi/shell/widget/dialog/_DialogContentMixin":,
23+
usages: 5
24+
}
25+
]
26+
}
27+
]
28+
*/
29+
30+
const hasMessages = result => result.messages.length;
31+
32+
const epiRulePlugin = "episerver-cms/";
33+
const ruleNameFromMessage = msg => msg.ruleId.replace(epiRulePlugin, "");
34+
35+
const isEpiMessage = message => message.ruleId && message.ruleId.startsWith(epiRulePlugin);
36+
const areEpiMessages = result => result.messages.filter(isEpiMessage);
37+
38+
const moduleNameFromMessage = msg => msg.message
39+
.replace(/'/g, "")
40+
.replace(" is an internal Episerver module and can have a breaking change in any release.", "")
41+
.replace(" is a deprecated Episerver module and will be removed in a future major version.", "");
42+
43+
const countModules = (seq, current) => {
44+
current.messages
45+
.filter(isEpiMessage) // `areEpiMessages` doesn't seem to work. It includes linting errors from this file, which is strange.
46+
.forEach(msg => {
47+
const module = moduleNameFromMessage(msg);
48+
const rule = ruleNameFromMessage(msg);
49+
50+
if (!seq[rule]) { seq[rule] = {}; }
51+
52+
if (!seq[rule][module]) { seq[rule][module] = 0; }
53+
54+
seq[rule][module]++;
55+
});
56+
57+
return seq;
58+
};
59+
60+
// This holds an object with module name and usage count as key and value.
61+
const hashmap = results
62+
.filter(hasMessages)
63+
.filter(areEpiMessages) // TODO: Why doesn't this work?
64+
.reduce(countModules, {
65+
// empty object to start with, to use as a simple hash map
66+
});
67+
68+
69+
return Object
70+
.keys(hashmap)
71+
.sort() // Sort on rule name, which are the keys
72+
.map(rule => {
73+
const violations = hashmap[rule];
74+
75+
return {
76+
rule,
77+
violations: Object
78+
.keys(violations)
79+
.sort() // First sort on module name, which are the keys
80+
.map(name => {
81+
return {
82+
module: name,
83+
usages: violations[name]
84+
};
85+
})
86+
};
87+
});
88+
};

lib/summary.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const defaultFormatter = require("./table");
2+
3+
module.exports = function (results) {
4+
return defaultFormatter(results);
5+
}

0 commit comments

Comments
 (0)