eslint-config-isaacscript 4.3.0 → 4.5.0
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/base-eslint.js +5 -2
- package/mod.js +0 -8
- package/package.json +1 -1
package/base-eslint.js
CHANGED
|
@@ -641,8 +641,11 @@ const SUGGESTIONS = {
|
|
|
641
641
|
*/
|
|
642
642
|
"sort-vars": "off",
|
|
643
643
|
|
|
644
|
-
/**
|
|
645
|
-
|
|
644
|
+
/**
|
|
645
|
+
* Partially superseded by `isaacscript/format-jsdoc-comments` and
|
|
646
|
+
* `isaacscript/format-line-comments`, but those rules do not handle trailing line comments.
|
|
647
|
+
*/
|
|
648
|
+
"spaced-comment": "error",
|
|
646
649
|
|
|
647
650
|
/** The `never` option is provided to make the rule stricter. */
|
|
648
651
|
strict: ["error", "never"],
|
package/mod.js
CHANGED
|
@@ -189,14 +189,6 @@ const config = {
|
|
|
189
189
|
*/
|
|
190
190
|
"unicorn/prefer-math-trunc": "off",
|
|
191
191
|
|
|
192
|
-
/**
|
|
193
|
-
* Defined at: base-unicorn.js
|
|
194
|
-
*
|
|
195
|
-
* TypeScriptToLua supports `parseInt`, but not `Number.parseInt`:
|
|
196
|
-
* https://github.com/TypeScriptToLua/TypeScriptToLua/issues/1471
|
|
197
|
-
*/
|
|
198
|
-
"unicorn/prefer-number-properties": "off",
|
|
199
|
-
|
|
200
192
|
/**
|
|
201
193
|
* Defined at: base-eslint.js
|
|
202
194
|
*
|