@ziloen/eslint-config 0.0.109 → 0.1.0
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 +30 -1
- package/dist/index.cjs +775 -0
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +734 -0
- package/package.json +39 -15
- package/index.js +0 -7
package/README.md
CHANGED
|
@@ -1 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
# 暂无描述...
|
|
2
|
+
|
|
3
|
+
## TODO
|
|
4
|
+
|
|
5
|
+
- [ ] JSDOc
|
|
6
|
+
- [ ] Promise
|
|
7
|
+
- [ ] Node
|
|
8
|
+
- [ ] 迁移到下一代配置文件
|
|
9
|
+
|
|
10
|
+
<!-- Plugin -->
|
|
11
|
+
<!-- JSX plugin `+`表示插件应当加上的内容 -->
|
|
12
|
+
<!--
|
|
13
|
+
{
|
|
14
|
+
condition
|
|
15
|
+
? conditionC && <div>C</div>
|
|
16
|
+
: conditionB
|
|
17
|
+
? <div>
|
|
18
|
+
++ <span>B</span>
|
|
19
|
+
++</div>
|
|
20
|
+
: null
|
|
21
|
+
}
|
|
22
|
+
-->
|
|
23
|
+
<!-- TS -->
|
|
24
|
+
<!--
|
|
25
|
+
type A =
|
|
26
|
+
B<
|
|
27
|
+
++| "2"
|
|
28
|
+
++| "1"
|
|
29
|
+
>
|
|
30
|
+
-->
|