isaacscript 3.16.1-dev.8 → 3.16.1-dev.9
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
{
|
|
3
3
|
// We extend the IsaacScript config for Node.js:
|
|
4
4
|
// https://github.com/IsaacScript/isaacscript/blob/main/packages/isaacscript-tsconfig/tsconfig.node.json
|
|
5
|
-
"extends": "
|
|
5
|
+
"extends": "isaacscript-tsconfig/tsconfig.node.json",
|
|
6
6
|
|
|
7
7
|
// We want to lint every file in this directory. Two entries for each file extension are needed
|
|
8
8
|
// because TypeScript will exclude files that begin with a period from an asterisk glob by
|
|
@@ -16,7 +16,7 @@ await lintScript(async () => {
|
|
|
16
16
|
$`eslint --max-warnings 0 .`,
|
|
17
17
|
|
|
18
18
|
// Check for unused exports.
|
|
19
|
-
// -"--error" makes it return an error code of 1 if unused exports are found.
|
|
19
|
+
// - "--error" makes it return an error code of 1 if unused exports are found.
|
|
20
20
|
$`npx ts-prune --error`,
|
|
21
21
|
|
|
22
22
|
// Spell check every file using CSpell.
|