neatlint 1.2.5 → 1.2.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/README.md +8 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
[Number]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number
|
|
3
3
|
[Boolean]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Boolean
|
|
4
4
|
[Object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object
|
|
5
|
-
[Array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
|
|
6
5
|
[Date]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
|
|
7
6
|
[Buffer]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
|
|
8
7
|
[Promise]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
|
|
@@ -66,19 +65,19 @@ Strict ESLint presets for modern TypeScript projects.
|
|
|
66
65
|
You can install it as follows.
|
|
67
66
|
|
|
68
67
|
```shell
|
|
69
|
-
|
|
68
|
+
# NPM
|
|
70
69
|
npm add neatlint
|
|
71
70
|
|
|
72
|
-
|
|
71
|
+
# PNPM
|
|
73
72
|
pnpm add neatlint
|
|
74
73
|
|
|
75
|
-
|
|
74
|
+
# Yarn
|
|
76
75
|
yarn add neatlint
|
|
77
76
|
|
|
78
|
-
|
|
77
|
+
# Bun
|
|
79
78
|
bun add neatlint
|
|
80
79
|
|
|
81
|
-
|
|
80
|
+
# Deno
|
|
82
81
|
deno add neatlint
|
|
83
82
|
```
|
|
84
83
|
|
|
@@ -114,9 +113,9 @@ Briefly as follows.
|
|
|
114
113
|
|
|
115
114
|
Get the ESLint configuration generated by Neatlint.
|
|
116
115
|
|
|
117
|
-
> | Parameter | Default | Description
|
|
118
|
-
> | --------- | ------------------------ |
|
|
119
|
-
> | options
|
|
116
|
+
> | Parameter | Type | Default | Description |
|
|
117
|
+
> | --------- | ----------------- | ------------------------ | ----------------- |
|
|
118
|
+
> | options? | [NeatlintOptions] | [NeatlintOptionsDefault] | Neatlint options. |
|
|
120
119
|
>
|
|
121
120
|
> returns [ESLintConfig]\[]
|
|
122
121
|
>
|