File tree 5 files changed +12
-4
lines changed
5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.8 .0"
2
+ "." : " 0.9 .0"
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.9.0] ( https://github.com/eslint/json/compare/json-v0.8.0...json-v0.9.0 ) (2024-12-09)
4
+
5
+
6
+ ### Features
7
+
8
+ * Add top-level-interop rule ([ #69 ] ( https://github.com/eslint/json/issues/69 ) ) ([ af56d6c] ( https://github.com/eslint/json/commit/af56d6ce6bff9d073aedd7f07c3ec0248ec3b4e9 ) )
9
+ * Catch more unsafe numbers ([ #71 ] ( https://github.com/eslint/json/issues/71 ) ) ([ 5ffc7c0] ( https://github.com/eslint/json/commit/5ffc7c0ead359c60a0cb5b2b4fdb522846933853 ) )
10
+
3
11
## [ 0.8.0] ( https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0 ) (2024-11-23)
4
12
5
13
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/json" ,
3
- "version" : " 0.8 .0" ,
3
+ "version" : " 0.9 .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.8 .0" ,
3
+ "version" : " 0.9 .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 @@ -22,7 +22,7 @@ import topLevelInterop from "./rules/top-level-interop.js";
22
22
const plugin = {
23
23
meta : {
24
24
name : "@eslint/json" ,
25
- version : "0.8 .0" , // x-release-please-version
25
+ version : "0.9 .0" , // x-release-please-version
26
26
} ,
27
27
languages : {
28
28
json : new JSONLanguage ( { mode : "json" } ) ,
You can’t perform that action at this time.
0 commit comments