pr-checkmate 1.0.23 → 1.0.24

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
@@ -1,71 +1,71 @@
1
1
  # Dependencies
2
- **/node_modules/**
2
+ node_modules/
3
3
 
4
4
  # Build outputs
5
- **/dist/**
6
- **/build/**
7
- **/out/**
8
- **/.next/**
9
- **/.nuxt/**
5
+ dist/
6
+ build/
7
+ out/
8
+ .next/
9
+ .nuxt/
10
10
 
11
11
  # Test reports & artifacts
12
- **/allure-report/**
13
- **/allure-results/**
14
- **/reports/**
15
- **/report/**
16
- **/test-reports/**
17
- **/test-report/**
18
- **/test-output/**
19
- **/test-results/**
20
- **/results/**
21
- **/result/**
22
- **/coverage/**
23
- **/.coverage/**
24
- **/htmlcov/**
12
+ allure-report/
13
+ allure-results/
14
+ reports/
15
+ report/
16
+ test-reports/
17
+ test-report/
18
+ test-output/
19
+ test-results/
20
+ results/
21
+ result/
22
+ coverage/
23
+ .coverage/
24
+ htmlcov/
25
25
 
26
26
  # Jest
27
- **/jest-html-reporters-*/**
28
- **/jest-stare/**
27
+ jest-html-reporters-*/
28
+ jest-stare/
29
29
 
30
30
  # Cypress
31
- **/cypress/reports/**
32
- **/cypress/videos/**
33
- **/cypress/screenshots/**
31
+ cypress/reports/
32
+ cypress/videos/
33
+ cypress/screenshots/
34
34
 
35
35
  # Playwright
36
- **/playwright-report/**
37
- **/test-results/**
36
+ playwright-report/
37
+ test-results/
38
38
 
39
39
  # WebdriverIO
40
- **/.wdio/**
41
- **/wdio-logs/**
40
+ .wdio/
41
+ wdio-logs/
42
42
 
43
43
  # Mocha/Mochawesome
44
- **/mochawesome-report/**
45
- **/mochawesome-reports/**
44
+ mochawesome-report/
45
+ mochawesome-reports/
46
46
 
47
47
  # Maven/JUnit
48
- **/target/**
48
+ target/
49
49
 
50
50
  # Logs
51
- **/logs/**
52
- **/*.log
53
- **/npm-debug.log*
54
- **/yarn-debug.log*
51
+ logs/
52
+ *.log
53
+ npm-debug.log*
54
+ yarn-debug.log*
55
55
 
56
56
  # Python
57
- **/__pycache__/**
58
- **/.pytest_cache/**
59
- **/.venv/**
60
- **/venv/**
57
+ __pycache__/
58
+ .pytest_cache/
59
+ .venv/
60
+ venv/
61
61
 
62
62
  # Git
63
- **/.git/**
63
+ .git/
64
64
 
65
65
  # Config files
66
- **/*.config.js
67
- **/*.config.ts
68
- **/jest.config.*
69
- **/wdio.config.*
70
- **/playwright.config.*
71
- **/cypress.config.*
66
+ *.config.js
67
+ *.config.ts
68
+ jest.config.*
69
+ wdio.config.*
70
+ playwright.config.*
71
+ cypress.config.*
package/eslint.config.mjs CHANGED
@@ -1,27 +1,11 @@
1
1
  import tsPlugin from '@typescript-eslint/eslint-plugin';
2
2
  import tsParser from '@typescript-eslint/parser';
3
3
  import prettierPlugin from 'eslint-plugin-prettier';
4
- /Users/mavox / Projects / todo - app - automation / node_modules / pr - checkmate / dist / config / constants.js
5
4
 
6
5
  export default [
7
6
  {
8
7
  files: ['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx'],
9
8
 
10
- ignores: [
11
- '**/node_modules/**',
12
- '**/dist/**',
13
- '**/build/**',
14
- '**/.git/**',
15
- '**/coverage/**',
16
- '**/allure-report/**',
17
- '**/allure-results/**',
18
- '**/reports/**',
19
- '**/test-reports/**',
20
- '**/playwright-report/**',
21
- '**/*.config.js',
22
- '**/*.config.ts',
23
- ],
24
-
25
9
  languageOptions: {
26
10
  parser: tsParser,
27
11
  parserOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pr-checkmate",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "description": "Automated PR quality checks: linting, formatting, dependency analysis, and spellcheck",
5
5
  "keywords": [
6
6
  "github-actions",