eslint-config-isaacscript 1.0.51 → 1.0.52

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.
Files changed (2) hide show
  1. package/mod.js +9 -0
  2. package/package.json +3 -3
package/mod.js CHANGED
@@ -10,6 +10,15 @@ module.exports = {
10
10
  // We modify the linting rules from the base for some specific things
11
11
  // (listed in alphabetical order)
12
12
  rules: {
13
+ // Documentation:
14
+ // https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/no-loop-func.md
15
+ // https://eslint.org/docs/rules/no-loop-func
16
+ // Defined at:
17
+ // https://github.com/iamturns/eslint-config-airbnb-typescript/blob/master/lib/shared.js
18
+ // This rule throws false positives with API functions
19
+ // It can be worked around by supplying lists of globals to ESLint, but this is ugly
20
+ "@typescript-eslint/no-loop-func": "off",
21
+
13
22
  // Documentation:
14
23
  // https://github.com/eslint/eslint/blob/master/docs/rules/no-bitwise.md
15
24
  // Defined at:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-isaacscript",
3
- "version": "1.0.51",
3
+ "version": "1.0.52",
4
4
  "description": "An ESLint config for IsaacScript projects.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,8 +9,8 @@
9
9
  "license": "GPL-3.0",
10
10
  "author": "Zamiell",
11
11
  "devDependencies": {
12
- "eslint": "^8.2.0",
12
+ "eslint": "^8.3.0",
13
13
  "eslint-plugin-prettier": "^4.0.0",
14
- "prettier": "^2.4.1"
14
+ "prettier": "^2.5.0"
15
15
  }
16
16
  }