Skip to content

Commit 1b00213

Browse files
committed
1.1.0
1 parent 028cc73 commit 1b00213

10 files changed

+46
-13
lines changed

docs/rules/no-binary-numeric-literals.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-binary-numeric-literals"
55
description: "disallow binary numeric literals"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-binary-numeric-literals
89

910
> disallow binary numeric literals
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -42,6 +42,10 @@ Nothing.
4242

4343
[jsonc/valid-json-number]: ./valid-json-number.md
4444

45+
## :rocket: Version
46+
47+
This rule was introduced in eslint-plugin-jsonc v1.1.0
48+
4549
## :mag: Implementation
4650

4751
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-binary-numeric-literals.ts)

docs/rules/no-escape-sequence-in-identifier.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-escape-sequence-in-identifier"
55
description: "disallow escape sequences in identifiers."
6+
since: "v1.1.0"
67
---
78
# jsonc/no-escape-sequence-in-identifier
89

910
> disallow escape sequences in identifiers.
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -36,6 +36,10 @@ This rule reports disallow escape sequences in identifiers.
3636

3737
Nothing.
3838

39+
## :rocket: Version
40+
41+
This rule was introduced in eslint-plugin-jsonc v1.1.0
42+
3943
## :mag: Implementation
4044

4145
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-escape-sequence-in-identifier.ts)

docs/rules/no-hexadecimal-numeric-literals.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-hexadecimal-numeric-literals"
55
description: "disallow hexadecimal numeric literals"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-hexadecimal-numeric-literals
89

910
> disallow hexadecimal numeric literals
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -44,6 +44,10 @@ Nothing.
4444

4545
[jsonc/valid-json-number]: ./valid-json-number.md
4646

47+
## :rocket: Version
48+
49+
This rule was introduced in eslint-plugin-jsonc v1.1.0
50+
4751
## :mag: Implementation
4852

4953
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-hexadecimal-numeric-literals.ts)

docs/rules/no-infinity.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-infinity"
55
description: "disallow Infinity"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-infinity
89

910
> disallow Infinity
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
## :book: Rule Details
1413

1514
This rule reports the use of Infinity.
@@ -43,6 +42,10 @@ Nothing.
4342

4443
[jsonc/valid-json-number]: ./valid-json-number.md
4544

45+
## :rocket: Version
46+
47+
This rule was introduced in eslint-plugin-jsonc v1.1.0
48+
4649
## :mag: Implementation
4750

4851
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-infinity.ts)

docs/rules/no-nan.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-nan"
55
description: "disallow NaN"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-nan
89

910
> disallow NaN
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
## :book: Rule Details
1413

1514
This rule reports the use of NaN.
@@ -43,6 +42,10 @@ Nothing.
4342

4443
[jsonc/valid-json-number]: ./valid-json-number.md
4544

45+
## :rocket: Version
46+
47+
This rule was introduced in eslint-plugin-jsonc v1.1.0
48+
4649
## :mag: Implementation
4750

4851
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-nan.ts)

docs/rules/no-octal-numeric-literals.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-octal-numeric-literals"
55
description: "disallow octal numeric literals"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-octal-numeric-literals
89

910
> disallow octal numeric literals
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -42,6 +42,10 @@ Nothing.
4242

4343
[jsonc/valid-json-number]: ./valid-json-number.md
4444

45+
## :rocket: Version
46+
47+
This rule was introduced in eslint-plugin-jsonc v1.1.0
48+
4549
## :mag: Implementation
4650

4751
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-octal-numeric-literals.ts)

docs/rules/no-octal.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-octal"
55
description: "disallow legacy octal literals"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-octal
89

910
> disallow legacy octal literals
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
## :book: Rule Details
1413

1514
The rule disallows legacy octal literals.
@@ -43,6 +42,10 @@ Nothing.
4342
[no-octal]: https://eslint.org/docs/rules/no-octal
4443
[jsonc/valid-json-number]: ./valid-json-number.md
4544

45+
## :rocket: Version
46+
47+
This rule was introduced in eslint-plugin-jsonc v1.1.0
48+
4649
## :mag: Implementation
4750

4851
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-octal.ts)

docs/rules/no-plus-sign.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-plus-sign"
55
description: "disallow plus sign"
6+
since: "v1.1.0"
67
---
78
# jsonc/no-plus-sign
89

910
> disallow plus sign
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -44,6 +44,10 @@ Nothing.
4444

4545
[jsonc/valid-json-number]: ./valid-json-number.md
4646

47+
## :rocket: Version
48+
49+
This rule was introduced in eslint-plugin-jsonc v1.1.0
50+
4751
## :mag: Implementation
4852

4953
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-plus-sign.ts)

docs/rules/no-unicode-codepoint-escapes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: "rule-details"
33
sidebarDepth: 0
44
title: "jsonc/no-unicode-codepoint-escapes"
55
description: "disallow Unicode code point escape sequences."
6+
since: "v1.1.0"
67
---
78
# jsonc/no-unicode-codepoint-escapes
89

910
> disallow Unicode code point escape sequences.
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
1313

1414
## :book: Rule Details
@@ -36,6 +36,10 @@ This rule disallow Unicode code point escape sequences.
3636

3737
Nothing.
3838

39+
## :rocket: Version
40+
41+
This rule was introduced in eslint-plugin-jsonc v1.1.0
42+
3943
## :mag: Implementation
4044

4145
- [Rule source](https://github.com/ota-meshi/eslint-plugin-jsonc/blob/master/lib/rules/no-unicode-codepoint-escapes.ts)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-jsonc",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "ESLint plugin for JSON, JSONC and JSON5 files.",
55
"main": "dist/index.js",
66
"typescript": {

0 commit comments

Comments
 (0)