File tree 5 files changed +17
-4
lines changed
5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.6 .0"
2
+ "." : " 0.7 .0"
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.7.0] ( https://github.com/eslint/json/compare/json-v0.6.0...json-v0.7.0 ) (2024-11-17)
4
+
5
+
6
+ ### Features
7
+
8
+ * enable ` no-unsafe-values ` and add it to recommended configuration ([ #51 ] ( https://github.com/eslint/json/issues/51 ) ) ([ 72273f5] ( https://github.com/eslint/json/commit/72273f5dc0461505989a278a1f16b88d64bc8d7d ) )
9
+ * rule no-unsafe-values ([ #30 ] ( https://github.com/eslint/json/issues/30 ) ) ([ 6988e5c] ( https://github.com/eslint/json/commit/6988e5c1445bbca10b1988ca2d9949b4bc66378c ) )
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * Upgrade Momoa to fix parsing errors ([ #50 ] ( https://github.com/eslint/json/issues/50 ) ) ([ 3723a07] ( https://github.com/eslint/json/commit/3723a071a3bae296d2dbe66684b9d62832f099ad ) )
15
+
3
16
## [ 0.6.0] ( https://github.com/eslint/json/compare/json-v0.5.0...json-v0.6.0 ) (2024-10-31)
4
17
5
18
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/json" ,
3
- "version" : " 0.6 .0" ,
3
+ "version" : " 0.7 .0" ,
4
4
"exports" : " ./dist/esm/index.js" ,
5
5
"publish" : {
6
6
"include" : [
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/json" ,
3
- "version" : " 0.6 .0" ,
3
+ "version" : " 0.7 .0" ,
4
4
"description" : " JSON linting plugin for ESLint" ,
5
5
"author" : " Nicholas C. Zakas" ,
6
6
"type" : " module" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import noUnsafeValues from "./rules/no-unsafe-values.js";
20
20
const plugin = {
21
21
meta : {
22
22
name : "@eslint/json" ,
23
- version : "0.6 .0" , // x-release-please-version
23
+ version : "0.7 .0" , // x-release-please-version
24
24
} ,
25
25
languages : {
26
26
json : new JSONLanguage ( { mode : "json" } ) ,
You can’t perform that action at this time.
0 commit comments