@putout/eslint 5.0.3 → 6.0.0

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/README.md CHANGED
@@ -94,7 +94,7 @@ export const include = () => [
94
94
  'DebuggerStatement',
95
95
  ];
96
96
 
97
- export const filter = (path) => {
97
+ export const filter = (path, {options}) => {
98
98
  return true;
99
99
  };
100
100
  ```
@@ -30,7 +30,7 @@ const prepare = (plugin, context, options) => (node) => {
30
30
  filename,
31
31
  };
32
32
 
33
- const result = filter(path, options);
33
+ const result = filter(path, {options});
34
34
 
35
35
  if (!result)
36
36
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@putout/eslint",
3
- "version": "5.0.3",
3
+ "version": "6.0.0",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "Wrapper that simplifies ESLint API and makes it compatible with 🐊Putout",
@@ -37,20 +37,19 @@
37
37
  "eslint"
38
38
  ],
39
39
  "devDependencies": {
40
- "@putout/eslint-flat": "^4.0.0",
41
40
  "@putout/plugin-eslint-plugin": "*",
42
- "c8": "^10.0.0",
43
- "eslint": "^10.0.0-alpha.0",
41
+ "eslint": "^10.0.0",
44
42
  "eslint-plugin-n": "^17.0.0",
45
- "eslint-plugin-putout": "^30.0.0",
46
- "madrun": "^12.0.0",
43
+ "eslint-plugin-putout": "^31.0.0",
44
+ "madrun": "^13.0.0",
47
45
  "montag": "^1.0.0",
48
46
  "nodemon": "^3.0.1",
49
47
  "putout": "*",
48
+ "superc8": "^12.0.0",
50
49
  "supertape": "^12.0.0"
51
50
  },
52
51
  "peerDependencies": {
53
- "eslint": ">=9"
52
+ "eslint": ">=10"
54
53
  },
55
54
  "license": "MIT",
56
55
  "engines": {