@mscharley/eslint-config 2.0.3 → 2.0.4

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/CHANGELOG.json CHANGED
@@ -1,6 +1,18 @@
1
1
  {
2
2
  "name": "@mscharley/eslint-config",
3
3
  "entries": [
4
+ {
5
+ "version": "2.0.4",
6
+ "tag": "@mscharley/eslint-config_v2.0.4",
7
+ "date": "Sun, 02 Jul 2023 02:48:38 GMT",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "comment": "Fix ordering issues"
12
+ }
13
+ ]
14
+ }
15
+ },
4
16
  {
5
17
  "version": "2.0.3",
6
18
  "tag": "@mscharley/eslint-config_v2.0.3",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Change Log - @mscharley/eslint-config
2
2
 
3
- This log was last generated on Sun, 02 Jul 2023 02:43:53 GMT and should not be manually modified.
3
+ This log was last generated on Sun, 02 Jul 2023 02:48:38 GMT and should not be manually modified.
4
+
5
+ ## 2.0.4
6
+ Sun, 02 Jul 2023 02:48:38 GMT
7
+
8
+ ### Patches
9
+
10
+ - Fix ordering issues
4
11
 
5
12
  ## 2.0.3
6
13
  Sun, 02 Jul 2023 02:43:53 GMT
package/eslint.json CHANGED
@@ -11,8 +11,6 @@
11
11
  "import/no-cycle": ["error", { "ignoreExternal": true }],
12
12
  "import/no-duplicates": "off",
13
13
  "import/no-useless-path-segments": ["warn"],
14
- "node/no-missing-import": "off",
15
- "node/no-missing-require": "off",
16
14
  "array-callback-return": "error",
17
15
  "arrow-spacing": "error",
18
16
  "block-scoped-var": "warn",
package/node.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
- "extends": [
3
- "plugin:node/recommended"
4
- ],
2
+ "extends": ["plugin:node/recommended"],
5
3
  "settings": {
6
4
  "node": {
7
- "tryExtensions": [".js", ".jsx", ".json", ".node", ".d.ts", ".ts", ".tsx"]
5
+ "tryExtensions": [".js", ".jsx", ".json", ".node", ".d.ts", ".ts", ".tsx"]
8
6
  }
9
7
  },
10
8
  "rules": {
11
9
  "node/no-sync": "warn",
10
+ "node/no-missing-import": "off",
11
+ "node/no-missing-require": "off",
12
12
  "node/prefer-promises/dns": "warn",
13
13
  "node/prefer-promises/fs": "warn"
14
14
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mscharley/eslint-config",
3
- "version": "2.0.3",
3
+ "version": "2.0.4",
4
4
  "description": "ESLint presets that I use a lot",
5
5
  "lint-staged": {
6
6
  "*.{js,jsx,ts,tsx}": "eslint -c index.js --fix",