@angular-eslint/eslint-plugin-template 1.1.1-alpha.6 → 1.2.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 +10 -0
- package/dist/configs/all.json +1 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/rules/no-duplicate-attributes.d.ts +7 -0
- package/package.json +5 -4
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
declare type Options = [{
|
|
2
|
+
allowTwoWayDataBinding?: boolean;
|
|
3
|
+
}];
|
|
4
|
+
export declare type MessageIds = 'noDuplicateAttributes';
|
|
5
|
+
export declare const RULE_NAME = "no-duplicate-attributes";
|
|
6
|
+
declare const _default: import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleModule<"noDuplicateAttributes", Options, import("@typescript-eslint/experimental-utils/dist/ts-eslint/Rule").RuleListener>;
|
|
7
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-eslint/eslint-plugin-template",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "ESLint plugin for Angular Templates",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"build": "rimraf ./dist && microbundle --tsconfig tsconfig.build.json --no-sourcemap --target=node --compress --format=cjs && ncp ./src/configs ./dist/configs",
|
|
10
10
|
"test": "jest --coverage",
|
|
11
11
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
12
|
-
"check-configs": "jest tests/configs.test.ts --runTestsByPath --runInBand"
|
|
12
|
+
"check-configs": "jest tests/configs.test.ts --runTestsByPath --runInBand",
|
|
13
|
+
"clean": "rimraf ./dist"
|
|
13
14
|
},
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"axobject-query": "^2.2.0"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
|
-
"@angular-eslint/utils": "1.
|
|
32
|
+
"@angular-eslint/utils": "1.2.0",
|
|
32
33
|
"@types/aria-query": "^4.2.0"
|
|
33
34
|
},
|
|
34
35
|
"peerDependencies": {
|
|
@@ -36,5 +37,5 @@
|
|
|
36
37
|
"eslint": "*",
|
|
37
38
|
"typescript": "*"
|
|
38
39
|
},
|
|
39
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "c7deee67f98d9b699eb5f624b3bb929069858e7e"
|
|
40
41
|
}
|