isaacscript 4.5.0 → 4.5.1
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.
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
// This is the configuration file for ESLint, the TypeScript linter:
|
|
2
2
|
// https://eslint.org/docs/latest/use/configure/
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
/** @type {import("eslint").Linter.Config} */
|
|
5
|
+
const config = {
|
|
5
6
|
extends: [
|
|
6
7
|
// The linter base is the IsaacScript mod config:
|
|
7
8
|
// https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/mod.js
|
|
@@ -19,3 +20,5 @@ export default {
|
|
|
19
20
|
// Insert changed or disabled rules here, if necessary.
|
|
20
21
|
},
|
|
21
22
|
};
|
|
23
|
+
|
|
24
|
+
module.exports = config;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
// This is the configuration file for ESLint, the TypeScript linter:
|
|
2
2
|
// https://eslint.org/docs/latest/use/configure/
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
/** @type {import("eslint").Linter.Config} */
|
|
5
|
+
const config = {
|
|
5
6
|
extends: [
|
|
6
7
|
// The linter base is the shared IsaacScript config:
|
|
7
8
|
// https://github.com/IsaacScript/isaacscript/blob/main/packages/eslint-config-isaacscript/base.js
|
|
@@ -22,3 +23,5 @@ export default {
|
|
|
22
23
|
// Insert changed or disabled rules here, if necessary.
|
|
23
24
|
},
|
|
24
25
|
};
|
|
26
|
+
|
|
27
|
+
module.exports = config;
|