Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[codespell]
skip = ./.git,.claude/*,.codex/*,.vscode/*,code_coverage/*,composer.lock,runtime/*,scaffold-lock.json,vendor/*,*/tests/*,tests/**,*/composer.lock,*/composer.json,*/package-lock.json,*/dist/*,*/node_modules/*
skip = ./.git,.claude/*,.codex/*,.config/gh/*,.github/agents/*,.github/copilot-instructions.md,.github/copilot/*,.github/instructions/*,.github/prompts/*,.github/skills/*,.vscode/*,*/composer.json,*/composer.lock,*/dist/*,*/node_modules/*,*/package-lock.json,*/tests/*,code_coverage/*,composer.lock,runtime/*,scaffold-lock.json,tests/**,vendor/*
15 changes: 11 additions & 4 deletions .github/linters/.editorconfig-checker.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"Exclude": [
"\\.min\\.css$",
"\\.min\\.js$",
"^\\.claude/",
"^\\.codex/",
"^\\.config/gh/",
"^\\.github/agents/",
"^\\.github/copilot-instructions\\.md$",
"^\\.github/copilot/",
"^\\.github/instructions/",
"^\\.github/prompts/",
"^\\.github/skills/",
"^\\.vscode/",
"^code_coverage/",
"^composer\\.lock$",
"phpstan-baseline\\.neon$",
"^runtime/",
"^tests/runtime/",
"\\.min\\.css$",
"\\.min\\.js$",
"^vendor/",
"^runtime/",
"phpstan-baseline\\.neon$",
"scaffold-lock\\.json$"
]
}
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# AI agents (if present)
.codex
# Local AI agent, editor, and GitHub CLI config (if present)
.claude
.codex
.config/gh

# codecoverage (if present)
code_coverage
Expand All @@ -11,7 +12,7 @@ c3.php
# composer
composer.lock

# gitHub copilot config (if present)
# GitHub Copilot config (if present)
.github/agents/**
.github/copilot-instructions.md
.github/copilot/**
Expand All @@ -38,7 +39,6 @@ package-lock.json
# phpunit (if present)
.phpunit.cache
.phpunit.result.cache
phpunit.xml*

# vagrant (if present)
.vagrant
Expand Down
30 changes: 13 additions & 17 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,32 +1,28 @@
# Local agent, editor, coverage output, runtime state, caches, and dependencies.
# Local agent, editor, coverage, and generated runtime state.
.claude/**
.codex/**
.config/gh/**
.github/agents/**
.github/copilot-instructions.md
.github/copilot/**
.github/instructions/**
.github/prompts/**
.github/skills/**
.vscode/**
code_coverage/**
runtime/**

# Dependencies.
vendor/**

# Dependency lockfile ignored by git.
composer.lock

**/*.min.css
**/*.min.js

# Vite-built bundles (committed dist/) and lockfiles.
**/dist/**
**/node_modules/**
**/package-lock.json

# Yii AssetManager publishes a hashed copy of src/assets/ under tests/runtime/
# whenever phpunit runs; the tree is regenerated on every test run, never
# authored, and ignored by git already.
tests/runtime/**

# License texts ship verbatim — never auto-formatted.
# License texts ship verbatim.
**/LICENSE*

# Tool configs maintained by hand to keep their array order meaningful.
# Tool config maintained by hand to keep array order meaningful.
composer-require-checker.json

# Auto-generated by yii2-extensions/scaffold; never hand-edited.
# Auto-generated by yii2-extensions/scaffold.
scaffold-lock.json
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## 0.1.4 Under development

- ci: exclude VSCode and local GitHub CLI and Copilot config paths from scaffolded quality checks.

## 0.1.3 July 04, 2026

- ci: replace Super-Linter with reusable quality and security workflows, group Dependabot updates, and refresh scaffolded linter and Gitleaks configs.
Expand Down
2 changes: 1 addition & 1 deletion metadata/.github/linters/.codespellrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[codespell]
skip = ./.git,.claude/*,.codex/*,.vscode/*,code_coverage/*,composer.lock,runtime/*,scaffold-lock.json,vendor/*,*/tests/*,tests/**,*/composer.lock,*/composer.json,*/package-lock.json,*/dist/*,*/node_modules/*
skip = ./.git,.claude/*,.codex/*,.config/gh/*,.github/agents/*,.github/copilot-instructions.md,.github/copilot/*,.github/instructions/*,.github/prompts/*,.github/skills/*,.vscode/*,*/composer.json,*/composer.lock,*/dist/*,*/node_modules/*,*/package-lock.json,*/tests/*,code_coverage/*,composer.lock,runtime/*,scaffold-lock.json,tests/**,vendor/*
15 changes: 11 additions & 4 deletions metadata/.github/linters/.editorconfig-checker.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
{
"Exclude": [
"\\.min\\.css$",
"\\.min\\.js$",
"^\\.claude/",
"^\\.codex/",
"^\\.config/gh/",
"^\\.github/agents/",
"^\\.github/copilot-instructions\\.md$",
"^\\.github/copilot/",
"^\\.github/instructions/",
"^\\.github/prompts/",
"^\\.github/skills/",
"^\\.vscode/",
"^code_coverage/",
"^composer\\.lock$",
"phpstan-baseline\\.neon$",
"^runtime/",
"^tests/runtime/",
"\\.min\\.css$",
"\\.min\\.js$",
"^vendor/",
"^runtime/",
"phpstan-baseline\\.neon$",
"scaffold-lock\\.json$"
]
}
14 changes: 7 additions & 7 deletions metadata/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# AI agents (if present)
.codex
# Local AI agent, editor, and GitHub CLI config (if present)
.claude
.codex
.config/gh

# codecoverage (if present)
code_coverage
Expand All @@ -11,7 +12,7 @@ c3.php
# composer
composer.lock

# gitHub copilot config (if present)
# GitHub Copilot config (if present)
.github/agents/**
.github/copilot-instructions.md
.github/copilot/**
Expand All @@ -28,14 +29,13 @@ nbproject
# node_modules (if present)
node_modules
package-lock.json
Comment thread
terabytesoftw marked this conversation as resolved.
!src/assets/package-lock.json

# phpactor (if present)
.phpactor.*

# phpstorm project (if present)
.idea

# phpactor (if present)
.phpactor.*

# phpunit (if present)
.phpunit.cache
.phpunit.result.cache
Expand Down
7 changes: 7 additions & 0 deletions metadata/.prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Local agent, editor, coverage, and generated runtime state.
.claude/**
.codex/**
.config/gh/**
.github/agents/**
.github/copilot-instructions.md
.github/copilot/**
.github/instructions/**
.github/prompts/**
.github/skills/**
.vscode/**
code_coverage/**
runtime/**
Expand Down
8 changes: 1 addition & 7 deletions metadata/.prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"printWidth": 80,
"overrides": [
{
"files": ["**/*.{js,jsx,ts,tsx,vue,css,scss,html,yml,yaml}"],
"files": ["**/*.{yml,yaml}"],
Comment thread
terabytesoftw marked this conversation as resolved.
"options": {
"tabWidth": 2
}
Expand All @@ -17,12 +17,6 @@
"embeddedLanguageFormatting": "off",
"tabWidth": 2
}
},
{
"files": ["**/package.json", "**/package-lock.json"],
"options": {
"tabWidth": 2
}
}
]
}
Loading