@cherepanov.pavel/shareable-config 1.0.13 → 1.0.14

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 (47) hide show
  1. package/.editorconfig-get.js +6 -6
  2. package/.get-all.js +12 -12
  3. package/.gitattributes-get.js +6 -6
  4. package/.gitignore-get.js +12 -12
  5. package/.vscode/.code-snippets-get.js +14 -14
  6. package/.vscode/extensions.json-get.js +12 -12
  7. package/.vscode/settings.json-get.js +12 -12
  8. package/env.json5.set.js +2 -2
  9. package/package.json +1 -1
  10. package/tools/eslint-config/configs/global.js +9 -9
  11. package/tools/eslint-config/configs/javascript.js +7 -7
  12. package/tools/eslint-config/configs/json.js +57 -57
  13. package/tools/eslint-config/configs/typescript.js +9 -9
  14. package/tools/eslint-config/configs/vue.js +16 -16
  15. package/tools/eslint-config/index.js +5 -5
  16. package/tools/eslint-config/rules/constants.js +1 -1
  17. package/tools/eslint-config/rules/javascript/index.js +2 -2
  18. package/tools/eslint-config/rules/javascript/possible-problems.js +60 -60
  19. package/tools/eslint-config/rules/javascript/suggestions.js +206 -207
  20. package/tools/eslint-config/rules/severity.js +3 -3
  21. package/tools/eslint-config/rules/stylistic/index.js +2 -2
  22. package/tools/eslint-config/rules/stylistic/jsFormatting.js +113 -114
  23. package/tools/eslint-config/rules/stylistic/tsFormatting.js +5 -5
  24. package/tools/eslint-config/rules/typescript/common.js +103 -103
  25. package/tools/eslint-config/rules/typescript/compatibility.js +21 -21
  26. package/tools/eslint-config/rules/typescript/extension.js +46 -46
  27. package/tools/eslint-config/rules/typescript/index.js +3 -3
  28. package/tools/eslint-config/rules/vue/base.js +3 -3
  29. package/tools/eslint-config/rules/vue/extension.js +46 -45
  30. package/tools/eslint-config/rules/vue/formatting.js +33 -37
  31. package/tools/eslint-config/rules/vue/index.js +5 -5
  32. package/tools/eslint-config/rules/vue/possibleProblems.js +123 -123
  33. package/tools/eslint-config/rules/vue/suggestions.js +76 -76
  34. package/tools/stylelint-config/config.js +11 -11
  35. package/tools/stylelint-config/rules/base.js +19 -19
  36. package/tools/stylelint-config/rules/conflicts.js +2 -2
  37. package/tools/stylelint-config/rules/order.js +19 -19
  38. package/tools/stylelint-config/rules/property-groups.js +337 -337
  39. package/tools/stylelint-config/rules/scss.js +4 -4
  40. package/tools/stylelint-config/rules/stylistic.js +82 -82
  41. package/utils/communication.js +3 -3
  42. package/utils/copy-with-override.js +9 -9
  43. package/utils/env.js +6 -6
  44. package/utils/file-header.js +8 -8
  45. package/utils/file.js +12 -12
  46. package/utils/lint.js +2 -2
  47. package/utils/merge.js +11 -11
@@ -1,80 +1,80 @@
1
- import { ERROR, OFF, WARN } from '../severity.js';
1
+ import { ERROR, OFF, WARN } from "../severity.js";
2
2
 
3
3
  export const suggestionRules = {
4
- 'accessor-pairs': [ERROR],
5
- 'arrow-body-style': [
4
+ "accessor-pairs": [ERROR],
5
+ "arrow-body-style": [
6
6
  ERROR,
7
- 'always',
7
+ "always",
8
8
  ],
9
- 'block-scoped-var': [ERROR],
10
- 'camelcase': [
9
+ "block-scoped-var": [ERROR],
10
+ "camelcase": [
11
11
  ERROR,
12
- { properties: 'never' },
12
+ { properties: "never" },
13
13
  ],
14
- 'capitalized-comments': [
14
+ "capitalized-comments": [
15
15
  OFF,
16
- 'never',
16
+ "never",
17
17
  ],
18
- 'class-methods-use-this': [ERROR],
19
- 'complexity': [OFF],
20
- 'consistent-return': [OFF],
21
- 'consistent-this': [OFF],
22
- 'curly': [
18
+ "class-methods-use-this": [ERROR],
19
+ "complexity": [OFF],
20
+ "consistent-return": [OFF],
21
+ "consistent-this": [OFF],
22
+ "curly": [
23
23
  ERROR,
24
- 'all',
24
+ "all",
25
25
  ],
26
- 'default-case': [OFF],
27
- 'default-case-last': [ERROR],
28
- 'default-param-last': [ERROR],
29
- 'dot-notation': [ERROR],
30
- 'eqeqeq': [
26
+ "default-case": [OFF],
27
+ "default-case-last": [ERROR],
28
+ "default-param-last": [ERROR],
29
+ "dot-notation": [ERROR],
30
+ "eqeqeq": [
31
31
  ERROR,
32
- 'always',
33
- { null: 'always' },
32
+ "always",
33
+ { null: "always" },
34
34
  ],
35
- 'func-name-matching': [WARN],
36
- 'func-names': [
35
+ "func-name-matching": [WARN],
36
+ "func-names": [
37
37
  WARN,
38
- 'as-needed',
38
+ "as-needed",
39
39
  ],
40
- 'func-style': [
40
+ "func-style": [
41
41
  ERROR,
42
- 'declaration',
42
+ "declaration",
43
43
  { allowArrowFunctions: true },
44
44
  ],
45
- 'grouped-accessor-pairs': [
45
+ "grouped-accessor-pairs": [
46
46
  ERROR,
47
- 'getBeforeSet',
47
+ "getBeforeSet",
48
48
  ],
49
- 'guard-for-in': [OFF],
50
- 'id-denylist': [OFF],
51
- 'id-length': [
49
+ "guard-for-in": [OFF],
50
+ "id-denylist": [OFF],
51
+ "id-length": [
52
52
  ERROR,
53
53
  {
54
54
  min: 2,
55
55
  exceptionPatterns: [
56
- 'sort',
57
- '^a$',
58
- '^b$',
59
- 'for',
60
- '^i$',
61
- '^j$',
56
+ "sort",
57
+ "^a$",
58
+ "^b$",
59
+ "for",
60
+ "^i$",
61
+ "^j$",
62
62
  ],
63
- properties: 'never',
63
+ properties: "never",
64
64
  },
65
65
  ],
66
- 'id-match': [OFF],
67
- 'init-declarations': [OFF],
68
- 'logical-assignment-operators': [
66
+ "id-match": [OFF],
67
+ "init-declarations": [OFF],
68
+ "logical-assignment-operators": [
69
69
  ERROR,
70
- 'always',
70
+ "always",
71
71
  { enforceForIfStatements: true },
72
72
  ],
73
- 'max-classes-per-file': [
73
+ "max-classes-per-file": [
74
74
  ERROR,
75
75
  1,
76
76
  ],
77
- 'max-depth': [
77
+ "max-depth": [
78
78
  ERROR,
79
79
  4,
80
80
  ],
@@ -88,62 +88,62 @@ export const suggestionRules = {
88
88
  // skipBlankLines: true,
89
89
  // skipComments: true,
90
90
  // }],
91
- 'max-nested-callbacks': [
91
+ "max-nested-callbacks": [
92
92
  WARN,
93
93
  { max: 5 },
94
94
  ],
95
- 'max-params': [
95
+ "max-params": [
96
96
  WARN,
97
97
  { max: 5 },
98
98
  ],
99
- 'max-statements': [
99
+ "max-statements": [
100
100
  WARN,
101
101
  { max: 20 },
102
102
  ],
103
- 'multiline-comment-style': [OFF],
104
- 'new-cap': [
103
+ "multiline-comment-style": [OFF],
104
+ "new-cap": [
105
105
  ERROR,
106
106
  {
107
107
  capIsNew: true,
108
108
  newIsCap: true,
109
109
  },
110
110
  ],
111
- 'no-alert': [ERROR],
112
- 'no-array-constructor': [ERROR],
113
- 'no-bitwise': [ERROR],
114
- 'no-caller': [ERROR],
115
- 'no-case-declarations': [ERROR],
116
- 'no-console': [
111
+ "no-alert": [ERROR],
112
+ "no-array-constructor": [ERROR],
113
+ "no-bitwise": [ERROR],
114
+ "no-caller": [ERROR],
115
+ "no-case-declarations": [ERROR],
116
+ "no-console": [
117
117
  WARN,
118
118
  {
119
119
  allow: [
120
- 'warn',
121
- 'error',
122
- 'info',
120
+ "warn",
121
+ "error",
122
+ "info",
123
123
  ],
124
124
  },
125
125
  ],
126
- 'no-continue': [ERROR],
127
- 'no-delete-var': [ERROR],
128
- 'no-div-regex': [ERROR],
129
- 'no-else-return': [
126
+ "no-continue": [ERROR],
127
+ "no-delete-var": [ERROR],
128
+ "no-div-regex": [ERROR],
129
+ "no-else-return": [
130
130
  ERROR,
131
131
  { allowElseIf: false },
132
132
  ],
133
- 'no-empty': [
133
+ "no-empty": [
134
134
  ERROR,
135
135
  { allowEmptyCatch: true },
136
136
  ],
137
- 'no-empty-function': [ERROR],
138
- 'no-empty-static-block': [ERROR],
139
- 'no-eq-null': [OFF],
140
- 'no-eval': [ERROR],
141
- 'no-extend-native': [ERROR],
142
- 'no-extra-bind': [ERROR],
143
- 'no-extra-boolean-cast': [ERROR],
144
- 'no-extra-label': [ERROR],
145
- 'no-global-assign': [ERROR],
146
- 'no-implicit-coercion': [
137
+ "no-empty-function": [ERROR],
138
+ "no-empty-static-block": [ERROR],
139
+ "no-eq-null": [OFF],
140
+ "no-eval": [ERROR],
141
+ "no-extend-native": [ERROR],
142
+ "no-extra-bind": [ERROR],
143
+ "no-extra-boolean-cast": [ERROR],
144
+ "no-extra-label": [ERROR],
145
+ "no-global-assign": [ERROR],
146
+ "no-implicit-coercion": [
147
147
  ERROR,
148
148
  {
149
149
  boolean: true,
@@ -151,140 +151,140 @@ export const suggestionRules = {
151
151
  string: true,
152
152
  },
153
153
  ],
154
- 'no-implicit-globals': [OFF],
155
- 'no-implied-eval': [ERROR],
156
- 'no-inline-comments': [OFF],
157
- 'no-invalid-this': [ERROR],
158
- 'no-iterator': [ERROR],
159
- 'no-label-var': [ERROR],
160
- 'no-labels': [
154
+ "no-implicit-globals": [OFF],
155
+ "no-implied-eval": [ERROR],
156
+ "no-inline-comments": [OFF],
157
+ "no-invalid-this": [ERROR],
158
+ "no-iterator": [ERROR],
159
+ "no-label-var": [ERROR],
160
+ "no-labels": [
161
161
  ERROR,
162
162
  { allowLoop: false, allowSwitch: false },
163
163
  ],
164
- 'no-lone-blocks': [ERROR],
165
- 'no-lonely-if': [ERROR],
166
- 'no-loop-func': [ERROR],
167
- 'no-magic-numbers': [OFF],
168
- 'no-multi-assign': [ERROR],
169
- 'no-multi-str': [ERROR],
170
- 'no-negated-condition': [ERROR],
171
- 'no-nested-ternary': [ERROR],
172
- 'no-new': [ERROR],
173
- 'no-new-func': [ERROR],
174
- 'no-new-object': [ERROR],
175
- 'no-new-wrappers': [ERROR],
176
- 'no-nonoctal-decimal-escape': [ERROR],
177
- 'no-octal': [ERROR],
178
- 'no-octal-escape': [ERROR],
179
- 'no-param-reassign': [
164
+ "no-lone-blocks": [ERROR],
165
+ "no-lonely-if": [ERROR],
166
+ "no-loop-func": [ERROR],
167
+ "no-magic-numbers": [OFF],
168
+ "no-multi-assign": [ERROR],
169
+ "no-multi-str": [ERROR],
170
+ "no-negated-condition": [ERROR],
171
+ "no-nested-ternary": [ERROR],
172
+ "no-new": [ERROR],
173
+ "no-new-func": [ERROR],
174
+ "no-new-object": [ERROR],
175
+ "no-new-wrappers": [ERROR],
176
+ "no-nonoctal-decimal-escape": [ERROR],
177
+ "no-octal": [ERROR],
178
+ "no-octal-escape": [ERROR],
179
+ "no-param-reassign": [
180
180
  ERROR,
181
181
  {
182
182
  props: true,
183
183
  },
184
184
  ],
185
- 'no-plusplus': [
185
+ "no-plusplus": [
186
186
  ERROR,
187
187
  { allowForLoopAfterthoughts: true },
188
188
  ],
189
- 'no-proto': [ERROR],
190
- 'no-redeclare': [
189
+ "no-proto": [ERROR],
190
+ "no-redeclare": [
191
191
  ERROR,
192
192
  { builtinGlobals: true },
193
193
  ],
194
- 'no-regex-spaces': [ERROR],
195
- 'no-restricted-exports': [
194
+ "no-regex-spaces": [ERROR],
195
+ "no-restricted-exports": [
196
196
  ERROR,
197
197
  {
198
198
  restrictedNamedExports: [
199
- 'default', // use `export default` to provide a default export
200
- 'then', // this will cause tons of confusion when your module is dynamically `import()`ed, and will break in most node ESM versions
199
+ "default", // use `export default` to provide a default export
200
+ "then", // this will cause tons of confusion when your module is dynamically `import()`ed, and will break in most node ESM versions
201
201
  ],
202
202
  },
203
203
  ],
204
- 'no-restricted-imports': [
204
+ "no-restricted-imports": [
205
205
  OFF,
206
206
  { paths: [], patterns: [] },
207
207
  ],
208
- 'no-restricted-properties': [
208
+ "no-restricted-properties": [
209
209
  ERROR,
210
210
  {
211
- object: 'arguments',
212
- property: 'callee',
213
- message: 'arguments.callee is deprecated',
211
+ object: "arguments",
212
+ property: "callee",
213
+ message: "arguments.callee is deprecated",
214
214
  },
215
215
  {
216
- object: 'global',
217
- property: 'isFinite',
218
- message: 'Please use Number.isFinite instead',
216
+ object: "global",
217
+ property: "isFinite",
218
+ message: "Please use Number.isFinite instead",
219
219
  },
220
220
  {
221
- object: 'self',
222
- property: 'isFinite',
223
- message: 'Please use Number.isFinite instead',
221
+ object: "self",
222
+ property: "isFinite",
223
+ message: "Please use Number.isFinite instead",
224
224
  },
225
225
  {
226
- object: 'window',
227
- property: 'isFinite',
228
- message: 'Please use Number.isFinite instead',
226
+ object: "window",
227
+ property: "isFinite",
228
+ message: "Please use Number.isFinite instead",
229
229
  },
230
230
  {
231
- object: 'global',
232
- property: 'isNaN',
233
- message: 'Please use Number.isNaN instead',
231
+ object: "global",
232
+ property: "isNaN",
233
+ message: "Please use Number.isNaN instead",
234
234
  },
235
235
  {
236
- object: 'self',
237
- property: 'isNaN',
238
- message: 'Please use Number.isNaN instead',
236
+ object: "self",
237
+ property: "isNaN",
238
+ message: "Please use Number.isNaN instead",
239
239
  },
240
240
  {
241
- object: 'window',
242
- property: 'isNaN',
243
- message: 'Please use Number.isNaN instead',
241
+ object: "window",
242
+ property: "isNaN",
243
+ message: "Please use Number.isNaN instead",
244
244
  },
245
245
  {
246
- property: '__defineGetter__',
247
- message: 'Please use Object.defineProperty instead.',
246
+ property: "__defineGetter__",
247
+ message: "Please use Object.defineProperty instead.",
248
248
  },
249
249
  {
250
- property: '__defineSetter__',
251
- message: 'Please use Object.defineProperty instead.',
250
+ property: "__defineSetter__",
251
+ message: "Please use Object.defineProperty instead.",
252
252
  },
253
253
  {
254
- object: 'Math',
255
- property: 'pow',
256
- message: 'Use the exponentiation operator (**) instead.',
254
+ object: "Math",
255
+ property: "pow",
256
+ message: "Use the exponentiation operator (**) instead.",
257
257
  },
258
258
  ],
259
- 'no-restricted-syntax': [
259
+ "no-restricted-syntax": [
260
260
  ERROR,
261
261
  {
262
- selector: 'ForInStatement',
263
- message: 'for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.',
262
+ selector: "ForInStatement",
263
+ message: "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.",
264
264
  },
265
265
  {
266
- selector: 'LabeledStatement',
267
- message: 'Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.',
266
+ selector: "LabeledStatement",
267
+ message: "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.",
268
268
  },
269
269
  {
270
- selector: 'WithStatement',
271
- message: '`with` is disallowed in strict mode because it makes code impossible to predict and optimize.',
270
+ selector: "WithStatement",
271
+ message: "`with` is disallowed in strict mode because it makes code impossible to predict and optimize.",
272
272
  },
273
273
  ],
274
- 'no-return-assign': [
274
+ "no-return-assign": [
275
275
  ERROR,
276
- 'always',
276
+ "always",
277
277
  ],
278
- 'no-return-await': [ERROR],
279
- 'no-script-url': [ERROR],
280
- 'no-sequences': [ERROR],
281
- 'no-shadow': [OFF],
282
- 'no-shadow-restricted-names': [ERROR],
283
- 'no-ternary': [OFF],
284
- 'no-throw-literal': [ERROR],
285
- 'no-undef-init': [ERROR],
286
- 'no-undefined': [OFF],
287
- 'no-underscore-dangle': [
278
+ "no-return-await": [ERROR],
279
+ "no-script-url": [ERROR],
280
+ "no-sequences": [ERROR],
281
+ "no-shadow": [OFF],
282
+ "no-shadow-restricted-names": [ERROR],
283
+ "no-ternary": [OFF],
284
+ "no-throw-literal": [ERROR],
285
+ "no-undef-init": [ERROR],
286
+ "no-undefined": [OFF],
287
+ "no-underscore-dangle": [
288
288
  ERROR,
289
289
  {
290
290
  allow: [],
@@ -294,13 +294,13 @@ export const suggestionRules = {
294
294
  allowInObjectDestructuring: false,
295
295
  },
296
296
  ],
297
- 'no-unneeded-ternary': [
297
+ "no-unneeded-ternary": [
298
298
  ERROR,
299
299
  {
300
300
  defaultAssignment: false,
301
301
  },
302
302
  ],
303
- 'no-unused-expressions': [
303
+ "no-unused-expressions": [
304
304
  ERROR,
305
305
  {
306
306
  allowShortCircuit: false,
@@ -308,17 +308,17 @@ export const suggestionRules = {
308
308
  allowTaggedTemplates: false,
309
309
  },
310
310
  ],
311
- 'no-unused-labels': [ERROR],
312
- 'no-useless-call': [WARN],
313
- 'no-useless-catch': [ERROR],
314
- 'no-useless-computed-key': [
311
+ "no-unused-labels": [ERROR],
312
+ "no-useless-call": [WARN],
313
+ "no-useless-catch": [ERROR],
314
+ "no-useless-computed-key": [
315
315
  ERROR,
316
316
  { enforceForClassMembers: true },
317
317
  ],
318
- 'no-useless-concat': [ERROR],
319
- 'no-useless-constructor': [ERROR],
320
- 'no-useless-escape': [ERROR],
321
- 'no-useless-rename': [
318
+ "no-useless-concat": [ERROR],
319
+ "no-useless-constructor": [ERROR],
320
+ "no-useless-escape": [ERROR],
321
+ "no-useless-rename": [
322
322
  ERROR,
323
323
  {
324
324
  ignoreImport: false,
@@ -326,45 +326,44 @@ export const suggestionRules = {
326
326
  ignoreDestructuring: false,
327
327
  },
328
328
  ],
329
- 'no-useless-return': [ERROR],
330
- 'no-var': [ERROR],
331
- 'no-void': [
329
+ "no-useless-return": [ERROR],
330
+ "no-var": [ERROR],
331
+ "no-void": [
332
332
  ERROR,
333
333
  { allowAsStatement: true },
334
334
  ],
335
- 'no-warning-comments': [OFF],
336
- 'no-with': [ERROR],
337
- 'object-shorthand': [
335
+ "no-warning-comments": [OFF],
336
+ "no-with": [ERROR],
337
+ "object-shorthand": [
338
338
  ERROR,
339
- 'always',
339
+ "always",
340
340
  {
341
- avoidQuotes: true,
342
- ignoreConstructors: false,
341
+ ignoreConstructors: true,
343
342
  },
344
343
  ],
345
- 'one-var': [
344
+ "one-var": [
346
345
  ERROR,
347
- 'never',
346
+ "never",
348
347
  ],
349
- 'operator-assignment': [
348
+ "operator-assignment": [
350
349
  ERROR,
351
- 'always',
350
+ "always",
352
351
  ],
353
- 'prefer-arrow-callback': [
352
+ "prefer-arrow-callback": [
354
353
  ERROR,
355
354
  {
356
355
  allowNamedFunctions: false,
357
356
  allowUnboundThis: true,
358
357
  },
359
358
  ],
360
- 'prefer-const': [
359
+ "prefer-const": [
361
360
  ERROR,
362
361
  {
363
- destructuring: 'any',
362
+ destructuring: "any",
364
363
  ignoreReadBeforeAssign: true,
365
364
  },
366
365
  ],
367
- 'prefer-destructuring': [
366
+ "prefer-destructuring": [
368
367
  ERROR,
369
368
  {
370
369
  array: false,
@@ -374,37 +373,37 @@ export const suggestionRules = {
374
373
  enforceForRenamedProperties: false,
375
374
  },
376
375
  ],
377
- 'prefer-exponentiation-operator': [ERROR],
378
- 'prefer-named-capture-group': [OFF],
379
- 'prefer-numeric-literals': [ERROR],
380
- 'prefer-object-has-own': [ERROR],
381
- 'prefer-object-spread': [ERROR],
382
- 'prefer-promise-reject-errors': [ERROR],
383
- 'prefer-regex-literals': [
376
+ "prefer-exponentiation-operator": [ERROR],
377
+ "prefer-named-capture-group": [OFF],
378
+ "prefer-numeric-literals": [ERROR],
379
+ "prefer-object-has-own": [ERROR],
380
+ "prefer-object-spread": [ERROR],
381
+ "prefer-promise-reject-errors": [ERROR],
382
+ "prefer-regex-literals": [
384
383
  ERROR,
385
384
  { disallowRedundantWrapping: true },
386
385
  ],
387
- 'prefer-rest-params': [ERROR],
388
- 'prefer-spread': [ERROR],
389
- 'prefer-template': [ERROR],
390
- 'radix': [ERROR],
391
- 'require-await': [OFF],
392
- 'require-unicode-regexp': [WARN],
393
- 'require-yield': [ERROR],
394
- 'sort-imports': [OFF],
395
- 'sort-keys': [OFF],
396
- 'sort-vars': [OFF],
397
- 'strict': [
398
- ERROR,
399
- 'never',
400
- ],
401
- 'symbol-description': [ERROR],
402
- 'vars-on-top': [ERROR],
403
- 'yoda': [ERROR],
386
+ "prefer-rest-params": [ERROR],
387
+ "prefer-spread": [ERROR],
388
+ "prefer-template": [ERROR],
389
+ "radix": [ERROR],
390
+ "require-await": [OFF],
391
+ "require-unicode-regexp": [WARN],
392
+ "require-yield": [ERROR],
393
+ "sort-imports": [OFF],
394
+ "sort-keys": [OFF],
395
+ "sort-vars": [OFF],
396
+ "strict": [
397
+ ERROR,
398
+ "never",
399
+ ],
400
+ "symbol-description": [ERROR],
401
+ "vars-on-top": [ERROR],
402
+ "yoda": [ERROR],
404
403
 
405
- 'line-comment-position': [OFF],
406
- 'unicode-bom': [
404
+ "line-comment-position": [OFF],
405
+ "unicode-bom": [
407
406
  ERROR,
408
- 'never',
407
+ "never",
409
408
  ],
410
409
  };
@@ -1,3 +1,3 @@
1
- export const OFF = 'off';
2
- export const WARN = 'warn';
3
- export const ERROR = 'error';
1
+ export const OFF = "off";
2
+ export const WARN = "warn";
3
+ export const ERROR = "error";
@@ -1,2 +1,2 @@
1
- export { default as jsFormatting } from './jsFormatting.js';
2
- export { default as tsFormatting } from './tsFormatting.js';
1
+ export { default as jsFormatting } from "./jsFormatting.js";
2
+ export { default as tsFormatting } from "./tsFormatting.js";