@adyen/eslint-plugin-bento 2.6.0 → 2.6.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.
- package/CHANGELOG.md +16 -0
- package/package.json +4 -4
- package/rules/deprecation-currency-default-slot/deprecation-currency-default-slot.test.ts +6 -0
- package/rules/deprecation-tag-default-slot/deprecation-tag-default-slot.test.ts +6 -0
- package/rules/vue-old-spacer-tokens/vue-old-spacer-tokens.test.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.6.2 (2026-02-11)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
- fixed missing import from eslint generator ([566d94e14](https://github.com/Adyen/bento/commit/566d94e14))
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- erice
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## 2.6.1 (2026-02-05)
|
|
15
|
+
|
|
16
|
+
This was a version bump only for eslint to align it with other projects, there were no code changes.
|
|
17
|
+
|
|
18
|
+
|
|
3
19
|
## 2.6.0 (2026-02-04)
|
|
4
20
|
|
|
5
21
|
### Miscellaneous Chores
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adyen/eslint-plugin-bento",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "Adyen Bento ESLint rules",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"jscodeshift": "17.1.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@eslint/js": "9.
|
|
29
|
+
"@eslint/js": "9.39.2",
|
|
30
30
|
"@types/eslint": "9.6.1",
|
|
31
31
|
"@types/estree": "1.0.6",
|
|
32
32
|
"@types/node": "20.17.24",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@typescript-eslint/parser": "8.26.0",
|
|
35
35
|
"@vitest/eslint-plugin": "1.1.25",
|
|
36
36
|
"@vitest/coverage-v8": "2.1.9",
|
|
37
|
-
"eslint": "9.
|
|
37
|
+
"eslint": "9.39.0",
|
|
38
38
|
"eslint-plugin-vue": "10.0.0",
|
|
39
|
-
"globals": "16.
|
|
39
|
+
"globals": "16.5.0",
|
|
40
40
|
"vitest": "2.1.9",
|
|
41
41
|
"vue-eslint-parser": "10.1.3"
|
|
42
42
|
},
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { RuleTester } from 'eslint';
|
|
2
2
|
import vueParser from 'vue-eslint-parser';
|
|
3
|
+
import tsParser from '@typescript-eslint/parser';
|
|
3
4
|
import deprecationCurrencyDefaultSlot from './deprecation-currency-default-slot';
|
|
4
5
|
|
|
5
6
|
const ruleTester = new RuleTester({
|
|
6
7
|
languageOptions: {
|
|
8
|
+
ecmaVersion: 'latest',
|
|
9
|
+
sourceType: 'module',
|
|
7
10
|
parser: vueParser,
|
|
11
|
+
parserOptions: {
|
|
12
|
+
parser: tsParser,
|
|
13
|
+
},
|
|
8
14
|
},
|
|
9
15
|
});
|
|
10
16
|
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { RuleTester } from 'eslint';
|
|
2
2
|
import vueParser from 'vue-eslint-parser';
|
|
3
|
+
import tsParser from '@typescript-eslint/parser';
|
|
3
4
|
import deprecationTagDefaultSlot from './deprecation-tag-default-slot';
|
|
4
5
|
|
|
5
6
|
const ruleTester = new RuleTester({
|
|
6
7
|
languageOptions: {
|
|
8
|
+
ecmaVersion: 'latest',
|
|
9
|
+
sourceType: 'module',
|
|
7
10
|
parser: vueParser,
|
|
11
|
+
parserOptions: {
|
|
12
|
+
parser: tsParser,
|
|
13
|
+
},
|
|
8
14
|
},
|
|
9
15
|
});
|
|
10
16
|
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { RuleTester } from 'eslint';
|
|
2
2
|
import vueParser from 'vue-eslint-parser';
|
|
3
|
+
import tsParser from '@typescript-eslint/parser';
|
|
3
4
|
import spacerTokens from './vue-old-spacer-tokens';
|
|
4
5
|
|
|
5
6
|
const ruleTester = new RuleTester({
|
|
6
7
|
languageOptions: {
|
|
8
|
+
ecmaVersion: 'latest',
|
|
9
|
+
sourceType: 'module',
|
|
7
10
|
parser: vueParser,
|
|
11
|
+
parserOptions: {
|
|
12
|
+
parser: tsParser,
|
|
13
|
+
},
|
|
8
14
|
},
|
|
9
15
|
});
|
|
10
16
|
|