@paperless/conventions 2.0.1-beta.22 → 2.0.1-beta.220
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/.eslintrc.js +59 -36
- package/CHANGELOG.md +1735 -0
- package/commitlint.config.js +8 -0
- package/package.json +31 -32
- package/index.js +0 -3
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paperless/conventions",
|
|
3
3
|
"description": "Paperless eslint, typescript & prettier recommended configuration",
|
|
4
|
-
"version": "2.0.1-beta.
|
|
5
|
-
"main": "index.js",
|
|
4
|
+
"version": "2.0.1-beta.220",
|
|
6
5
|
"license": "ISC",
|
|
7
6
|
"publishConfig": {
|
|
8
7
|
"registry": "https://registry.npmjs.org"
|
|
@@ -16,42 +15,42 @@
|
|
|
16
15
|
"prettier:write": "yarn prettier:check -w"
|
|
17
16
|
},
|
|
18
17
|
"devDependencies": {
|
|
19
|
-
"@angular-eslint/builder": "
|
|
20
|
-
"@angular-eslint/eslint-plugin": "
|
|
21
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
22
|
-
"@angular-eslint/schematics": "
|
|
23
|
-
"@angular-eslint/template-parser": "
|
|
18
|
+
"@angular-eslint/builder": "~19.0.0",
|
|
19
|
+
"@angular-eslint/eslint-plugin": "~19.0.0",
|
|
20
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0",
|
|
21
|
+
"@angular-eslint/schematics": "~19.0.0",
|
|
22
|
+
"@angular-eslint/template-parser": "~19.0.0",
|
|
24
23
|
"@nrwl/eslint-plugin-nx": "15.9.7",
|
|
25
|
-
"@typescript-eslint/eslint-plugin": "
|
|
26
|
-
"@typescript-eslint/parser": "
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "5.36.1",
|
|
25
|
+
"@typescript-eslint/parser": "5.36.1",
|
|
27
26
|
"eslint": "~8.57.0",
|
|
28
|
-
"eslint-config-prettier": "
|
|
29
|
-
"eslint-import-resolver-typescript": "
|
|
30
|
-
"eslint-plugin-ava": "
|
|
31
|
-
"eslint-plugin-import": "
|
|
32
|
-
"eslint-plugin-jsonc": "
|
|
33
|
-
"eslint-plugin-only-error": "
|
|
34
|
-
"eslint-plugin-unicorn": "
|
|
35
|
-
"prettier": "
|
|
27
|
+
"eslint-config-prettier": "9.1.0",
|
|
28
|
+
"eslint-import-resolver-typescript": "3.1.5",
|
|
29
|
+
"eslint-plugin-ava": "14.0.0",
|
|
30
|
+
"eslint-plugin-import": "2.29.1",
|
|
31
|
+
"eslint-plugin-jsonc": "2.16.0",
|
|
32
|
+
"eslint-plugin-only-error": "1.0.2",
|
|
33
|
+
"eslint-plugin-unicorn": "55.0.0",
|
|
34
|
+
"prettier": "2.8.8",
|
|
36
35
|
"typescript": "4.6.3"
|
|
37
36
|
},
|
|
38
37
|
"peerDependencies": {
|
|
39
|
-
"@angular-eslint/builder": "
|
|
40
|
-
"@angular-eslint/eslint-plugin": "
|
|
41
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
42
|
-
"@angular-eslint/schematics": "
|
|
43
|
-
"@angular-eslint/template-parser": "
|
|
38
|
+
"@angular-eslint/builder": "~19.0.0",
|
|
39
|
+
"@angular-eslint/eslint-plugin": "~19.0.0",
|
|
40
|
+
"@angular-eslint/eslint-plugin-template": "~19.0.0",
|
|
41
|
+
"@angular-eslint/schematics": "~19.0.0",
|
|
42
|
+
"@angular-eslint/template-parser": "~19.0.0",
|
|
44
43
|
"@nrwl/eslint-plugin-nx": "15.9.7",
|
|
45
|
-
"@typescript-eslint/eslint-plugin": "
|
|
46
|
-
"@typescript-eslint/parser": "
|
|
44
|
+
"@typescript-eslint/eslint-plugin": "5.36.1",
|
|
45
|
+
"@typescript-eslint/parser": "5.36.1",
|
|
47
46
|
"eslint": "~8.57.0",
|
|
48
|
-
"eslint-plugin-ava": "
|
|
49
|
-
"eslint-plugin-import": "
|
|
50
|
-
"eslint-plugin-jsonc": "
|
|
51
|
-
"eslint-plugin-only-error": "
|
|
52
|
-
"eslint-plugin-unicorn": "
|
|
53
|
-
"prettier": "
|
|
54
|
-
"prettier-plugin-tailwindcss": "
|
|
55
|
-
"typescript": "
|
|
47
|
+
"eslint-plugin-ava": "14.0.0",
|
|
48
|
+
"eslint-plugin-import": "2.29.1",
|
|
49
|
+
"eslint-plugin-jsonc": "2.16.0",
|
|
50
|
+
"eslint-plugin-only-error": "1.0.2",
|
|
51
|
+
"eslint-plugin-unicorn": "55.0.0",
|
|
52
|
+
"prettier": "2.8.8",
|
|
53
|
+
"prettier-plugin-tailwindcss": "0.4.1",
|
|
54
|
+
"typescript": "4.6.3"
|
|
56
55
|
}
|
|
57
56
|
}
|
package/index.js
DELETED