eslint-plugin-traceability 1.0.5 → 1.0.6

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.
@@ -95,5 +95,13 @@ jobs:
95
95
  cd "$workdir"
96
96
  npm init -y > /dev/null
97
97
  npm install eslint-plugin-traceability > /dev/null
98
- echo '{"plugins":["traceability"],"rules":{}}' > .eslintrc.json
99
- npx eslint --print-config .
98
+ cat > eslint.config.js << 'EOF'
99
+ import traceability from 'eslint-plugin-traceability';
100
+ export default [
101
+ {
102
+ plugins: { traceability },
103
+ rules: {}
104
+ }
105
+ ];
106
+ EOF
107
+ npx eslint --print-config eslint.config.js
package/CHANGELOG.md CHANGED
@@ -1,9 +1,9 @@
1
- ## [1.0.5](https://github.com/voder-ai/eslint-plugin-traceability/compare/v1.0.4...v1.0.5) (2025-11-17)
1
+ ## [1.0.6](https://github.com/voder-ai/eslint-plugin-traceability/compare/v1.0.5...v1.0.6) (2025-11-17)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * remove @semantic-release/git plugin to prevent version commits ([277a0cc](https://github.com/voder-ai/eslint-plugin-traceability/commit/277a0cc5389ea43d41c1a277ec6929cac3104633))
6
+ * update smoke test to use ESLint 9 flat config format ([7f8321b](https://github.com/voder-ai/eslint-plugin-traceability/commit/7f8321bbcd121ac55fdb16d08ab6c127785e3bdf))
7
7
 
8
8
  # Changelog
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-traceability",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",