@paperless/conventions 1.17.5 → 1.18.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/.eslintrc.js +2 -2
- package/CHANGELOG.md +8 -0
- package/package.json +3 -3
- package/prettier.config.js +1 -1
- package/tsconfig.json +0 -1
package/.eslintrc.js
CHANGED
|
@@ -2,15 +2,14 @@ module.exports = {
|
|
|
2
2
|
parserOptions: {
|
|
3
3
|
project: './tsconfig.json',
|
|
4
4
|
},
|
|
5
|
+
plugins: ['@angular-eslint/template'],
|
|
5
6
|
extends: [
|
|
6
|
-
'airbnb',
|
|
7
7
|
'eslint:recommended',
|
|
8
8
|
'plugin:@stencil/recommended',
|
|
9
9
|
'plugin:import/errors',
|
|
10
10
|
'plugin:react/recommended',
|
|
11
11
|
'plugin:jsx-a11y/recommended',
|
|
12
12
|
'plugin:prettier/recommended',
|
|
13
|
-
'prettier/react',
|
|
14
13
|
'plugin:@angular-eslint/recommended',
|
|
15
14
|
'plugin:@angular-eslint/template/process-inline-templates',
|
|
16
15
|
],
|
|
@@ -19,6 +18,7 @@ module.exports = {
|
|
|
19
18
|
files: ['*.html'],
|
|
20
19
|
extends: ['plugin:@angular-eslint/template/recommended'],
|
|
21
20
|
rules: {
|
|
21
|
+
'no-tabs': 0,
|
|
22
22
|
/**
|
|
23
23
|
* Any template/HTML related rules you wish to use/reconfigure over and above the
|
|
24
24
|
* recommended set provided by the @angular-eslint project would go here.
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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
|
+
# [1.18.0](https://github.com/Employes/Paperless/compare/v1.17.5...v1.18.0) (2024-01-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @paperless/conventions
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.17.5](https://github.com/Employes/Paperless/compare/v1.17.4...v1.17.5) (2024-01-18)
|
|
7
15
|
|
|
8
16
|
|
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": "1.
|
|
4
|
+
"version": "1.18.0",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "ISC",
|
|
7
7
|
"publishConfig": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@typescript-eslint/parser": "5.59.5",
|
|
23
23
|
"eslint": "8.40.0",
|
|
24
24
|
"eslint-plugin-react": "7.32.2",
|
|
25
|
-
"prettier": "3.
|
|
25
|
+
"prettier": "3.2.4",
|
|
26
26
|
"typescript": "4.6.3"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@typescript-eslint/parser": "^5.19.0",
|
|
35
35
|
"eslint": "^8.13.0",
|
|
36
36
|
"eslint-plugin-react": "^7.29.4",
|
|
37
|
-
"prettier": "^
|
|
37
|
+
"prettier": "^3.2.4",
|
|
38
38
|
"prettier-plugin-tailwindcss": "^0.2.1",
|
|
39
39
|
"typescript": "^4.6.3"
|
|
40
40
|
}
|
package/prettier.config.js
CHANGED
package/tsconfig.json
CHANGED