eslint-config-conventions 1.0.2 → 1.0.3

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/.eslintrc.json +3 -2
  2. package/package.json +1 -1
package/.eslintrc.json CHANGED
@@ -78,7 +78,6 @@
78
78
  }
79
79
  ],
80
80
  "no-useless-backreference": "error",
81
- "require-atomic-updates": "error",
82
81
  "use-isnan": [
83
82
  "error",
84
83
  {
@@ -164,7 +163,6 @@
164
163
  "radix": "error",
165
164
  "require-await": "off",
166
165
  "@typescript-eslint/require-await": "error",
167
- "spaced-comment": ["error", "always"],
168
166
  "yoda": ["error", "never"],
169
167
 
170
168
  "import/no-absolute-path": "error",
@@ -203,7 +201,10 @@
203
201
  {
204
202
  "files": ["*.ts", "*.tsx"],
205
203
  "rules": {
204
+ "no-undef": "off",
205
+
206
206
  "@typescript-eslint/adjacent-overload-signatures": "error",
207
+ "@typescript-eslint/await-thenable": "error",
207
208
  "@typescript-eslint/array-type": [
208
209
  "error",
209
210
  { "default": "array-simple" }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-conventions",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "public": true,
5
5
  "description": "ESLint shareable config to enforce strict conventions and good code quality.",
6
6
  "author": "Divlo <contact@divlo.fr>",