@dineroregnskab/eslint-plugin-custom-rules 4.4.0 → 4.6.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/README.md
CHANGED
|
@@ -63,7 +63,7 @@ module.exports = {
|
|
|
63
63
|
### Publish & install new rule locally
|
|
64
64
|
|
|
65
65
|
1. Log in to npm using `npm login`
|
|
66
|
-
2. run:
|
|
66
|
+
2. run (in ./Packages/JavaScript/eslint-plugin-custom-rules/):
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
69
|
# {version_type}: The type of version increment (patch, minor, major)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dineroregnskab/eslint-plugin-custom-rules",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.0",
|
|
4
4
|
"description": "ESLint plugin with custom rules for Dinero Regnskab",
|
|
5
5
|
"main": "eslint-plugin-custom-rules.js",
|
|
6
6
|
"scripts": {
|
|
@@ -10,23 +10,20 @@
|
|
|
10
10
|
"author": "",
|
|
11
11
|
"license": "ISC",
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@angular-eslint/template-parser": "^19.2.1",
|
|
14
13
|
"@typescript-eslint/parser": "^8.26.1",
|
|
15
14
|
"eslint": "^9.22.0",
|
|
16
15
|
"eslint-config-prettier": "^10.1.1",
|
|
17
16
|
"eslint-plugin-prettier": "^5.2.3",
|
|
18
|
-
"prettier": "^3.5.3"
|
|
17
|
+
"prettier": "^3.5.3",
|
|
18
|
+
"@angular-eslint/template-parser": "^19.2.1"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"
|
|
21
|
+
"eslint": ">=8.0.0",
|
|
22
22
|
"@typescript-eslint/parser": ">=7",
|
|
23
|
-
"eslint": ">=
|
|
23
|
+
"@angular-eslint/template-parser": ">=17"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"**/*",
|
|
27
27
|
"!example/**/*"
|
|
28
|
-
]
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@dineroregnskab/eslint-plugin-custom-rules": "^4.0.1"
|
|
31
|
-
}
|
|
28
|
+
]
|
|
32
29
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
module.exports = {
|
|
2
2
|
meta: {
|
|
3
|
-
type: '
|
|
3
|
+
type: 'problem',
|
|
4
4
|
docs: {
|
|
5
5
|
description:
|
|
6
|
-
'
|
|
6
|
+
'Error when an it() block is missing awaitFeatureReady while createUserWithOrganization uses featureToggles without awaiting',
|
|
7
7
|
category: 'Best Practices',
|
|
8
8
|
recommended: true,
|
|
9
9
|
},
|