eslint-config-tamia 8.0.1 → 8.0.2

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/package.json +1 -1
  2. package/rules/errors.js +0 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-config-tamia",
3
3
  "description": "Tâmia ESLint config",
4
- "version": "8.0.1",
4
+ "version": "8.0.2",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "pretest": "npm run lint",
package/rules/errors.js CHANGED
@@ -4,8 +4,6 @@ module.exports = {
4
4
  // Enforce “for” loop update clause moving the counter
5
5
  // in the right direction
6
6
  'for-direction': 2,
7
- // Disallow await inside of loops
8
- 'no-await-in-loop': 2,
9
7
  // Disallow use of Object.prototypes builtins directly
10
8
  'no-prototype-builtins': 2,
11
9
  },