@angular-eslint/eslint-plugin-template 12.4.2-alpha.6 → 12.5.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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [12.5.0](https://github.com/angular-eslint/angular-eslint/compare/v12.4.1...v12.5.0) (2021-09-20)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **eslint-plugin-template:** [mouse-events-have-key-events] ignore custom components ([#680](https://github.com/angular-eslint/angular-eslint/issues/680)) ([f65874b](https://github.com/angular-eslint/angular-eslint/commit/f65874b6b1fb012f1f8a1a564b6348cd7ae2117f))
|
|
11
|
+
- **eslint-plugin-template:** support escape chars in inline templates ([#691](https://github.com/angular-eslint/angular-eslint/issues/691)) ([8b89ec7](https://github.com/angular-eslint/angular-eslint/commit/8b89ec7ba1ebdd5a29914bac457387d4b65bd691))
|
|
12
|
+
|
|
6
13
|
## [12.4.1](https://github.com/angular-eslint/angular-eslint/compare/v12.4.0...v12.4.1) (2021-09-09)
|
|
7
14
|
|
|
8
15
|
**Note:** Version bump only for package @angular-eslint/eslint-plugin-template
|
package/dist/index.d.ts
CHANGED
|
@@ -85,13 +85,13 @@ declare const _default: {
|
|
|
85
85
|
}], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
86
86
|
i18n: import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<import("./rules/i18n").MessageIds, [{
|
|
87
87
|
readonly boundTextAllowedPattern?: string | undefined;
|
|
88
|
-
readonly checkAttributes?: boolean | undefined;
|
|
89
88
|
readonly checkId?: boolean | undefined;
|
|
90
89
|
readonly checkText?: boolean | undefined;
|
|
90
|
+
readonly checkAttributes?: boolean | undefined;
|
|
91
91
|
readonly ignoreAttributes?: readonly string[] | undefined;
|
|
92
92
|
readonly ignoreTags?: readonly string[] | undefined;
|
|
93
93
|
}], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
94
|
-
"mouse-events-have-key-events": import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<"
|
|
94
|
+
"mouse-events-have-key-events": import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<import("./rules/mouse-events-have-key-events").MessageIds, [], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
95
95
|
"no-any": import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<import("./rules/no-any").MessageIds, [], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
96
96
|
"no-autofocus": import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<"noAutofocus", [], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
97
97
|
"no-call-expression": import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<"noCallExpression", [], import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/eslint-plugin-template",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.5.0",
|
|
4
4
|
"description": "ESLint plugin for Angular Templates",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"axobject-query": "^2.2.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@angular-eslint/utils": "12.
|
|
25
|
+
"@angular-eslint/utils": "12.5.0",
|
|
26
26
|
"@types/aria-query": "^4.2.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -30,5 +30,5 @@
|
|
|
30
30
|
"eslint": "*",
|
|
31
31
|
"typescript": "*"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "959ad2824d7d511e2d8c67ca03a6b5b71698f268"
|
|
34
34
|
}
|