@effect-app/eslint-shared-config 0.0.4 → 0.0.7

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/node_modules/@ben_12/eslint-plugin-dprint/LICENSE +21 -0
  3. package/node_modules/@ben_12/eslint-plugin-dprint/README.md +215 -0
  4. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/disable-conflict-rules.d.ts +110 -0
  5. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/disable-conflict-rules.js +114 -0
  6. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/disable-conflict-rules.js.map +1 -0
  7. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/recommended.d.ts +159 -0
  8. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/recommended.js +60 -0
  9. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/configs/recommended.js.map +1 -0
  10. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/dockerfile-config-schema.json +52 -0
  11. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/dprint.d.ts +8 -0
  12. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/dprint.js +188 -0
  13. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/dprint.js.map +1 -0
  14. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/graphql-config-schema.json +255 -0
  15. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/json-config-schema.json +187 -0
  16. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/malva-config-schema.json +363 -0
  17. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/markdown-config-schema.json +187 -0
  18. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/markup-config-schema.json +534 -0
  19. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/toml-config-schema.json +125 -0
  20. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/typescript-config-schema.json +1898 -0
  21. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/dprint/yaml-config-schema.json +126 -0
  22. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/index.d.ts +1 -0
  23. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/index.js +21 -0
  24. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/index.js.map +1 -0
  25. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/rules/dprint.d.ts +4 -0
  26. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/rules/dprint.js +261 -0
  27. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/rules/dprint.js.map +1 -0
  28. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/difference-iterator.d.ts +49 -0
  29. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/difference-iterator.js +129 -0
  30. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/difference-iterator.js.map +1 -0
  31. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/predicate.d.ts +10 -0
  32. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/predicate.js +20 -0
  33. package/node_modules/@ben_12/eslint-plugin-dprint/dist/lib/util/predicate.js.map +1 -0
  34. package/node_modules/@ben_12/eslint-plugin-dprint/package.json +122 -0
  35. package/package.json +8 -2
  36. package/patches/@ben_12+eslint-plugin-dprint+1.7.5.patch +39 -0
@@ -0,0 +1,187 @@
1
+ {
2
+ "type": "object",
3
+ "definitions": {
4
+ "newLineKind": {
5
+ "description": "The kind of newline to use.",
6
+ "type": "string",
7
+ "oneOf": [
8
+ {
9
+ "description": "For each file, uses the newline kind found at the end of the last line.",
10
+ "type": "string",
11
+ "enum": [
12
+ "auto"
13
+ ]
14
+ },
15
+ {
16
+ "description": "Uses carriage return, line feed.",
17
+ "type": "string",
18
+ "enum": [
19
+ "crlf"
20
+ ]
21
+ },
22
+ {
23
+ "description": "Uses line feed.",
24
+ "type": "string",
25
+ "enum": [
26
+ "lf"
27
+ ]
28
+ },
29
+ {
30
+ "description": "Uses the system standard (ex. crlf on Windows).",
31
+ "type": "string",
32
+ "enum": [
33
+ "system"
34
+ ]
35
+ }
36
+ ]
37
+ },
38
+ "textWrap": {
39
+ "description": "Text wrapping possibilities.",
40
+ "type": "string",
41
+ "oneOf": [
42
+ {
43
+ "description": "Always wraps text.",
44
+ "type": "string",
45
+ "enum": [
46
+ "always"
47
+ ]
48
+ },
49
+ {
50
+ "description": "Maintains line breaks.",
51
+ "type": "string",
52
+ "enum": [
53
+ "maintain"
54
+ ]
55
+ },
56
+ {
57
+ "description": "Never wraps text.",
58
+ "type": "string",
59
+ "enum": [
60
+ "never"
61
+ ]
62
+ }
63
+ ]
64
+ },
65
+ "emphasisKind": {
66
+ "description": "The character to use for emphasis/italics.",
67
+ "type": "string",
68
+ "oneOf": [
69
+ {
70
+ "description": "Uses asterisks (*) for emphasis.",
71
+ "type": "string",
72
+ "enum": [
73
+ "asterisks"
74
+ ]
75
+ },
76
+ {
77
+ "description": "Uses underscores (_) for emphasis.",
78
+ "type": "string",
79
+ "enum": [
80
+ "underscores"
81
+ ]
82
+ }
83
+ ]
84
+ },
85
+ "strongKind": {
86
+ "description": "The character to use for strong emphasis/bold.",
87
+ "type": "string",
88
+ "oneOf": [
89
+ {
90
+ "description": "Uses asterisks (**) for strong emphasis.",
91
+ "type": "string",
92
+ "enum": [
93
+ "asterisks"
94
+ ]
95
+ },
96
+ {
97
+ "description": "Uses underscores (__) for strong emphasis.",
98
+ "type": "string",
99
+ "enum": [
100
+ "underscores"
101
+ ]
102
+ }
103
+ ]
104
+ },
105
+ "unorderedListKind": {
106
+ "description": "The character to use for unordered lists.",
107
+ "type": "string",
108
+ "oneOf": [
109
+ {
110
+ "description": "Uses dashes (-) as primary character for lists.",
111
+ "type": "string",
112
+ "enum": [
113
+ "dashes"
114
+ ]
115
+ },
116
+ {
117
+ "description": "Uses asterisks (*) as primary character for lists.",
118
+ "type": "string",
119
+ "enum": [
120
+ "asterisks"
121
+ ]
122
+ }
123
+ ]
124
+ },
125
+ "deno": {
126
+ "description": "Top level configuration that sets the configuration to what is used in Deno.",
127
+ "type": "boolean",
128
+ "oneOf": [
129
+ {
130
+ "description": "",
131
+ "type": "boolean",
132
+ "enum": [
133
+ true
134
+ ]
135
+ },
136
+ {
137
+ "description": "",
138
+ "type": "boolean",
139
+ "enum": [
140
+ false
141
+ ]
142
+ }
143
+ ]
144
+ }
145
+ },
146
+ "properties": {
147
+ "locked": {
148
+ "description": "Whether the configuration is not allowed to be overriden or extended.",
149
+ "type": "boolean"
150
+ },
151
+ "lineWidth": {
152
+ "description": "The width of a line the printer will try to stay under. Note that the printer may exceed this width in certain cases.",
153
+ "type": "number"
154
+ },
155
+ "newLineKind": {
156
+ "$ref": "#/definitions/newLineKind"
157
+ },
158
+ "textWrap": {
159
+ "$ref": "#/definitions/textWrap"
160
+ },
161
+ "emphasisKind": {
162
+ "$ref": "#/definitions/emphasisKind"
163
+ },
164
+ "strongKind": {
165
+ "$ref": "#/definitions/strongKind"
166
+ },
167
+ "deno": {
168
+ "$ref": "#/definitions/deno"
169
+ },
170
+ "ignoreDirective": {
171
+ "description": "The text to use for an ignore directive (ex. `<!-- dprint-ignore -->`).",
172
+ "type": "string"
173
+ },
174
+ "ignoreFileDirective": {
175
+ "description": "The text to use for an ignore file directive (ex. `<!-- dprint-ignore-file -->`).",
176
+ "type": "string"
177
+ },
178
+ "ignoreStartDirective": {
179
+ "description": "The text to use for an ignore start directive (ex. `<!-- dprint-ignore-start -->`).",
180
+ "type": "string"
181
+ },
182
+ "ignoreEndDirective": {
183
+ "description": "The text to use for an ignore end directive (ex. `<!-- dprint-ignore-end -->`).",
184
+ "type": "string"
185
+ }
186
+ }
187
+ }