pr-checkmate 1.0.24 → 1.2.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/.eslintignore CHANGED
@@ -26,6 +26,7 @@ htmlcov/
26
26
  # Jest
27
27
  jest-html-reporters-*/
28
28
  jest-stare/
29
+ jest.config.js
29
30
 
30
31
  # Cypress
31
32
  cypress/reports/
package/eslint.config.mjs CHANGED
@@ -5,7 +5,6 @@ import prettierPlugin from 'eslint-plugin-prettier';
5
5
  export default [
6
6
  {
7
7
  files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
8
-
9
8
  languageOptions: {
10
9
  parser: tsParser,
11
10
  parserOptions: {
@@ -61,4 +60,23 @@ export default [
61
60
  ],
62
61
  },
63
62
  },
63
+
64
+ {
65
+ files: [
66
+ '*.config.js',
67
+ '*.config.ts',
68
+ 'jest.config.js',
69
+ 'wdio.config.js',
70
+ 'playwright.config.js',
71
+ 'cypress.config.js',
72
+ ],
73
+ languageOptions: {
74
+ parser: tsParser,
75
+ parserOptions: {
76
+ ecmaVersion: 2020,
77
+ sourceType: 'module',
78
+ project: undefined,
79
+ },
80
+ },
81
+ },
64
82
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pr-checkmate",
3
- "version": "1.0.24",
3
+ "version": "1.2.0",
4
4
  "description": "Automated PR quality checks: linting, formatting, dependency analysis, and spellcheck",
5
5
  "keywords": [
6
6
  "github-actions",
@@ -45,13 +45,13 @@
45
45
  },
46
46
  "repository": {
47
47
  "type": "git",
48
- "url": "https://github.com/YOUR_USERNAME/pr-checkmate.git"
48
+ "url": "https://github.com/Mybono/pr-checkmate.git"
49
49
  },
50
50
  "bugs": {
51
- "url": "https://github.com/YOUR_USERNAME/pr-checkmate/issues"
51
+ "url": "https://github.com/Mybono/pr-checkmate/issues"
52
52
  },
53
- "homepage": "https://github.com/YOUR_USERNAME/pr-checkmate#readme",
54
- "author": "Your Name <your.email@example.com>",
53
+ "homepage": "https://github.com/Mybono/pr-checkmate#readme",
54
+ "author": "Artur Polishchuk",
55
55
  "license": "LicenseRef-Proprietary",
56
56
  "dependencies": {
57
57
  "cspell": "^9.3.2",