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.
- package/.github/workflows/ci-cd.yml +10 -2
- package/CHANGELOG.md +2 -2
- package/package.json +1 -1
|
@@ -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
|
-
|
|
99
|
-
|
|
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.
|
|
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
|
-
*
|
|
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
|
|