@paperless/conventions 3.4.2 → 3.4.4

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 CHANGED
@@ -3,6 +3,28 @@
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.4](https://github.com/Employes/Paperless/compare/v3.4.3...v3.4.4) (2026-03-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **conventions/eslint:** Set tsconfig path ([3872165](https://github.com/Employes/Paperless/commit/38721653176762eae4ab62249749d31da2f55a3c))
12
+
13
+
14
+
15
+
16
+
17
+ ## [3.4.3](https://github.com/Employes/Paperless/compare/v3.4.2...v3.4.3) (2026-03-02)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **conventions/eslint:** Small improvement ([a22d05c](https://github.com/Employes/Paperless/commit/a22d05c3a7ca9ac9ebaf556e6ca7c81fbca5d550))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [3.4.2](https://github.com/Employes/Paperless/compare/v3.4.1...v3.4.2) (2026-02-27)
7
29
 
8
30
 
package/eslint.config.js CHANGED
@@ -37,6 +37,7 @@ export default defineConfig([
37
37
  'better-tailwindcss': {
38
38
  //entryPoint: 'src/global.css',
39
39
  tailwindConfig: 'tailwind.config.ts',
40
+ tsconfig: 'tsconfig.json',
40
41
  },
41
42
  },
42
43
  rules: {
@@ -99,9 +100,6 @@ export default defineConfig([
99
100
  files: ['**/*.{ts,tsx,cts,mts}'],
100
101
  languageOptions: {
101
102
  parser: typescriptPlugin.parser,
102
- // parserOptions: {
103
- // project: true,
104
- // },
105
103
  },
106
104
  },
107
105
  {
@@ -157,6 +155,9 @@ export default defineConfig([
157
155
  {
158
156
  files: ['**/*.html'],
159
157
  extends: [angularPlugin.configs.templateRecommended],
158
+ languageOptions: {
159
+ parser: angularPlugin.templateParser,
160
+ },
160
161
  rules: {
161
162
  'better-tailwindcss/enforce-consistent-line-wrapping': 'off',
162
163
  '@angular-eslint/template/prefer-self-closing-tags': 'error',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@paperless/conventions",
3
3
  "description": "Paperless eslint, typescript & prettier recommended configuration",
4
- "version": "3.4.2",
4
+ "version": "3.4.4",
5
5
  "license": "ISC",
6
6
  "type": "module",
7
7
  "publishConfig": {