File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 0.7 .0"
2
+ "." : " 0.8 .0"
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 0.8.0] ( https://github.com/eslint/json/compare/json-v0.7.0...json-v0.8.0 ) (2024-11-23)
4
+
5
+
6
+ ### Features
7
+
8
+ * rule no-unnormalized-keys ([ #63 ] ( https://github.com/eslint/json/issues/63 ) ) ([ c57882e] ( https://github.com/eslint/json/commit/c57882e1c3b51f00b94da4ed9b40d5cf2e4d6847 ) )
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * add type tests ([ #65 ] ( https://github.com/eslint/json/issues/65 ) ) ([ a6c0bc9] ( https://github.com/eslint/json/commit/a6c0bc9db1e265484c275860fdb41fcfd8aefaf2 ) )
14
+ * expose ` plugin.configs ` in types ([ #59 ] ( https://github.com/eslint/json/issues/59 ) ) ([ 1fd0452] ( https://github.com/eslint/json/commit/1fd0452e97554ec4e696d2105f68df36fbe7f260 ) )
15
+
3
16
## [ 0.7.0] ( https://github.com/eslint/json/compare/json-v0.6.0...json-v0.7.0 ) (2024-11-17)
4
17
5
18
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @eslint/json" ,
3
- "version" : " 0.7 .0" ,
3
+ "version" : " 0.8 .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.7 .0" ,
3
+ "version" : " 0.8 .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 @@ -21,7 +21,7 @@ import noUnnormalizedKeys from "./rules/no-unnormalized-keys.js";
21
21
const plugin = {
22
22
meta : {
23
23
name : "@eslint/json" ,
24
- version : "0.7 .0" , // x-release-please-version
24
+ version : "0.8 .0" , // x-release-please-version
25
25
} ,
26
26
languages : {
27
27
json : new JSONLanguage ( { mode : "json" } ) ,
You can’t perform that action at this time.
0 commit comments