voss-node-configs 1.0.39 → 1.0.40

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/base.js +2 -2
  2. package/package.json +1 -1
package/base.js CHANGED
@@ -22,8 +22,6 @@ export default [
22
22
  rules: {
23
23
  // Prettier integration
24
24
  'prettier/prettier': 'error',
25
-
26
- '@/no-return-await': 'error',
27
25
 
28
26
  // Base rules for all projects
29
27
  '@typescript-eslint/no-explicit-any': 'error',
@@ -39,6 +37,8 @@ export default [
39
37
  ignoreRestSiblings: false,
40
38
  },
41
39
  ],
40
+ '@typescript-eslint/return-await': 'error',
41
+ '@typescript-eslint/require-await': 'error',
42
42
 
43
43
  'no-var': 'error',
44
44
  'no-console': 'off', // Allow console by default, can be overridden
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voss-node-configs",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "description": "Shared TypeScript and ESLint configs for Node.js projects",
5
5
  "exports": {
6
6
  "./tsconfig.base": "./tsconfig.base.json",