@toptal/davinci-syntax 23.1.6-alpha-ff-64-af69159e.42 → 23.1.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 23.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7e4896d`](https://github.com/toptal/davinci/commit/7e4896d4db27e868ddce2bae9002699d5d26a65f)]:
|
|
8
|
+
- @toptal/davinci-cli-shared@2.6.1
|
|
9
|
+
- @toptal/eslint-plugin-davinci@5.7.1
|
|
10
|
+
|
|
3
11
|
## 23.1.5
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-syntax",
|
|
3
|
-
"version": "23.1.6
|
|
3
|
+
"version": "23.1.6",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"lint"
|
|
6
6
|
],
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@stylelint/postcss-css-in-js": "^0.38.0",
|
|
35
|
-
"@toptal/davinci-cli-shared": "2.6.1
|
|
36
|
-
"@toptal/davinci-dir-lint": "1.0.
|
|
37
|
-
"@toptal/eslint-plugin-davinci": "5.7.1
|
|
38
|
-
"@toptal/stylelint-plugin-davinci": "1.0.
|
|
35
|
+
"@toptal/davinci-cli-shared": "^2.6.1",
|
|
36
|
+
"@toptal/davinci-dir-lint": "^1.0.0",
|
|
37
|
+
"@toptal/eslint-plugin-davinci": "5.7.1",
|
|
38
|
+
"@toptal/stylelint-plugin-davinci": "1.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
40
40
|
"@typescript-eslint/parser": "^6.7.3",
|
|
41
41
|
"eslint": "^8.34.0",
|
|
@@ -74,6 +74,5 @@
|
|
|
74
74
|
},
|
|
75
75
|
"publishConfig": {
|
|
76
76
|
"access": "public"
|
|
77
|
-
}
|
|
78
|
-
"gitHead": "af69159eeae7c2755ac9a2385cadb37b134d4e11"
|
|
77
|
+
}
|
|
79
78
|
}
|
|
@@ -177,8 +177,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
177
177
|
],
|
|
178
178
|
'newlines-between': 'always',
|
|
179
179
|
distinctGroup: true,
|
|
180
|
-
sortTypesGroup: false,
|
|
181
|
-
named: false,
|
|
182
180
|
warnOnUnassignedImports: false,
|
|
183
181
|
},
|
|
184
182
|
],
|
|
@@ -454,9 +452,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
454
452
|
'no-unexpected-multiline': [
|
|
455
453
|
0,
|
|
456
454
|
],
|
|
457
|
-
'@typescript-eslint/lines-around-comment': [
|
|
458
|
-
0,
|
|
459
|
-
],
|
|
460
455
|
'@typescript-eslint/quotes': [
|
|
461
456
|
0,
|
|
462
457
|
],
|
|
@@ -511,6 +506,9 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
511
506
|
'function-paren-newline': [
|
|
512
507
|
'off',
|
|
513
508
|
],
|
|
509
|
+
'generator-star': [
|
|
510
|
+
'off',
|
|
511
|
+
],
|
|
514
512
|
'generator-star-spacing': [
|
|
515
513
|
'off',
|
|
516
514
|
],
|
|
@@ -541,6 +539,12 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
541
539
|
'new-parens': [
|
|
542
540
|
'off',
|
|
543
541
|
],
|
|
542
|
+
'no-arrow-condition': [
|
|
543
|
+
'off',
|
|
544
|
+
],
|
|
545
|
+
'no-comma-dangle': [
|
|
546
|
+
'off',
|
|
547
|
+
],
|
|
544
548
|
'no-extra-parens': [
|
|
545
549
|
'off',
|
|
546
550
|
],
|
|
@@ -559,12 +563,21 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
559
563
|
'no-multiple-empty-lines': [
|
|
560
564
|
'off',
|
|
561
565
|
],
|
|
566
|
+
'no-reserved-keys': [
|
|
567
|
+
'off',
|
|
568
|
+
],
|
|
569
|
+
'no-space-before-semi': [
|
|
570
|
+
'off',
|
|
571
|
+
],
|
|
562
572
|
'no-trailing-spaces': [
|
|
563
573
|
'off',
|
|
564
574
|
],
|
|
565
575
|
'no-whitespace-before-property': [
|
|
566
576
|
'off',
|
|
567
577
|
],
|
|
578
|
+
'no-wrap-func': [
|
|
579
|
+
'off',
|
|
580
|
+
],
|
|
568
581
|
'nonblock-statement-body-position': [
|
|
569
582
|
'off',
|
|
570
583
|
],
|
|
@@ -601,18 +614,39 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
601
614
|
'semi-style': [
|
|
602
615
|
'off',
|
|
603
616
|
],
|
|
617
|
+
'space-after-function-name': [
|
|
618
|
+
'off',
|
|
619
|
+
],
|
|
620
|
+
'space-after-keywords': [
|
|
621
|
+
'off',
|
|
622
|
+
],
|
|
604
623
|
'space-before-blocks': [
|
|
605
624
|
'off',
|
|
606
625
|
],
|
|
626
|
+
'space-before-function-parentheses': [
|
|
627
|
+
'off',
|
|
628
|
+
],
|
|
629
|
+
'space-before-keywords': [
|
|
630
|
+
'off',
|
|
631
|
+
],
|
|
632
|
+
'space-in-brackets': [
|
|
633
|
+
'off',
|
|
634
|
+
],
|
|
607
635
|
'space-in-parens': [
|
|
608
636
|
'off',
|
|
609
637
|
],
|
|
610
638
|
'space-infix-ops': [
|
|
611
639
|
'off',
|
|
612
640
|
],
|
|
641
|
+
'space-return-throw-case': [
|
|
642
|
+
'off',
|
|
643
|
+
],
|
|
613
644
|
'space-unary-ops': [
|
|
614
645
|
'off',
|
|
615
646
|
],
|
|
647
|
+
'space-unary-word-ops': [
|
|
648
|
+
'off',
|
|
649
|
+
],
|
|
616
650
|
'switch-colon-spacing': [
|
|
617
651
|
'off',
|
|
618
652
|
],
|
|
@@ -640,9 +674,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
640
674
|
'@babel/semi': [
|
|
641
675
|
'off',
|
|
642
676
|
],
|
|
643
|
-
'@typescript-eslint/block-spacing': [
|
|
644
|
-
'off',
|
|
645
|
-
],
|
|
646
677
|
'@typescript-eslint/brace-style': [
|
|
647
678
|
'off',
|
|
648
679
|
],
|
|
@@ -652,9 +683,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
652
683
|
'@typescript-eslint/indent': [
|
|
653
684
|
'off',
|
|
654
685
|
],
|
|
655
|
-
'@typescript-eslint/key-spacing': [
|
|
656
|
-
'off',
|
|
657
|
-
],
|
|
658
686
|
'@typescript-eslint/keyword-spacing': [
|
|
659
687
|
'off',
|
|
660
688
|
],
|
|
@@ -784,9 +812,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
784
812
|
'vue/array-bracket-spacing': [
|
|
785
813
|
'off',
|
|
786
814
|
],
|
|
787
|
-
'vue/array-element-newline': [
|
|
788
|
-
'off',
|
|
789
|
-
],
|
|
790
815
|
'vue/arrow-spacing': [
|
|
791
816
|
'off',
|
|
792
817
|
],
|
|
@@ -841,9 +866,6 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
841
866
|
'vue/multiline-html-element-content-newline': [
|
|
842
867
|
'off',
|
|
843
868
|
],
|
|
844
|
-
'vue/multiline-ternary': [
|
|
845
|
-
'off',
|
|
846
|
-
],
|
|
847
869
|
'vue/mustache-interpolation-spacing': [
|
|
848
870
|
'off',
|
|
849
871
|
],
|
|
@@ -889,51 +911,12 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
|
|
|
889
911
|
'vue/template-curly-spacing': [
|
|
890
912
|
'off',
|
|
891
913
|
],
|
|
892
|
-
'generator-star': [
|
|
893
|
-
'off',
|
|
894
|
-
],
|
|
895
914
|
'indent-legacy': [
|
|
896
915
|
'off',
|
|
897
916
|
],
|
|
898
|
-
'no-arrow-condition': [
|
|
899
|
-
'off',
|
|
900
|
-
],
|
|
901
|
-
'no-comma-dangle': [
|
|
902
|
-
'off',
|
|
903
|
-
],
|
|
904
|
-
'no-reserved-keys': [
|
|
905
|
-
'off',
|
|
906
|
-
],
|
|
907
|
-
'no-space-before-semi': [
|
|
908
|
-
'off',
|
|
909
|
-
],
|
|
910
917
|
'no-spaced-func': [
|
|
911
918
|
'off',
|
|
912
919
|
],
|
|
913
|
-
'no-wrap-func': [
|
|
914
|
-
'off',
|
|
915
|
-
],
|
|
916
|
-
'space-after-function-name': [
|
|
917
|
-
'off',
|
|
918
|
-
],
|
|
919
|
-
'space-after-keywords': [
|
|
920
|
-
'off',
|
|
921
|
-
],
|
|
922
|
-
'space-before-function-parentheses': [
|
|
923
|
-
'off',
|
|
924
|
-
],
|
|
925
|
-
'space-before-keywords': [
|
|
926
|
-
'off',
|
|
927
|
-
],
|
|
928
|
-
'space-in-brackets': [
|
|
929
|
-
'off',
|
|
930
|
-
],
|
|
931
|
-
'space-return-throw-case': [
|
|
932
|
-
'off',
|
|
933
|
-
],
|
|
934
|
-
'space-unary-word-ops': [
|
|
935
|
-
'off',
|
|
936
|
-
],
|
|
937
920
|
'react/jsx-space-before-closing': [
|
|
938
921
|
'off',
|
|
939
922
|
],
|