@paperless/conventions 3.4.2 → 3.4.3
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 +11 -0
- package/eslint.config.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [3.4.3](https://github.com/Employes/Paperless/compare/v3.4.2...v3.4.3) (2026-03-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **conventions/eslint:** Small improvement ([a22d05c](https://github.com/Employes/Paperless/commit/a22d05c3a7ca9ac9ebaf556e6ca7c81fbca5d550))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.4.2](https://github.com/Employes/Paperless/compare/v3.4.1...v3.4.2) (2026-02-27)
|
|
7
18
|
|
|
8
19
|
|
package/eslint.config.js
CHANGED
|
@@ -99,9 +99,6 @@ export default defineConfig([
|
|
|
99
99
|
files: ['**/*.{ts,tsx,cts,mts}'],
|
|
100
100
|
languageOptions: {
|
|
101
101
|
parser: typescriptPlugin.parser,
|
|
102
|
-
// parserOptions: {
|
|
103
|
-
// project: true,
|
|
104
|
-
// },
|
|
105
102
|
},
|
|
106
103
|
},
|
|
107
104
|
{
|
|
@@ -157,6 +154,9 @@ export default defineConfig([
|
|
|
157
154
|
{
|
|
158
155
|
files: ['**/*.html'],
|
|
159
156
|
extends: [angularPlugin.configs.templateRecommended],
|
|
157
|
+
languageOptions: {
|
|
158
|
+
parser: angularPlugin.templateParser,
|
|
159
|
+
},
|
|
160
160
|
rules: {
|
|
161
161
|
'better-tailwindcss/enforce-consistent-line-wrapping': 'off',
|
|
162
162
|
'@angular-eslint/template/prefer-self-closing-tags': 'error',
|