@angular-eslint/utils 15.1.1-alpha.21 → 15.1.1-alpha.25
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.
|
@@ -11,7 +11,7 @@ import type { TSESLint } from '@typescript-eslint/utils';
|
|
|
11
11
|
export declare const SPECIAL_UNDERLINE_CHARS: readonly ["~", "^", "#", "%", "¶", "*", "¨", "@"];
|
|
12
12
|
type MultipleErrorOptions<TMessageIds extends string> = BaseErrorOptions & {
|
|
13
13
|
readonly messages: readonly (Message<TMessageIds> & {
|
|
14
|
-
readonly char: typeof SPECIAL_UNDERLINE_CHARS[number];
|
|
14
|
+
readonly char: (typeof SPECIAL_UNDERLINE_CHARS)[number];
|
|
15
15
|
})[];
|
|
16
16
|
};
|
|
17
17
|
type BaseErrorOptions = {
|
package/dist/rules-tester.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { TSESLint } from '@typescript-eslint/utils';
|
|
2
2
|
declare const VALID_PARSERS: readonly ["@angular-eslint/template-parser", "@typescript-eslint/parser"];
|
|
3
3
|
type RuleTesterConfig = Omit<TSESLint.RuleTesterConfig, 'parser'> & {
|
|
4
|
-
parser: typeof VALID_PARSERS[number];
|
|
4
|
+
parser: (typeof VALID_PARSERS)[number];
|
|
5
5
|
};
|
|
6
6
|
export declare class RuleTester extends TSESLint.RuleTester {
|
|
7
7
|
private filename?;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/utils",
|
|
3
|
-
"version": "15.1.1-alpha.
|
|
3
|
+
"version": "15.1.1-alpha.25+023c6c5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"typescript": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@angular-eslint/bundled-angular-compiler": "15.1.1-alpha.
|
|
18
|
+
"@angular-eslint/bundled-angular-compiler": "15.1.1-alpha.25+023c6c5",
|
|
19
19
|
"@typescript-eslint/utils": "5.45.1"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "023c6c5c639bc99c7c5f500b8b303d655b4767c4"
|
|
22
22
|
}
|