@@ -18,15 +18,24 @@ module.exports = {
1818 } ,
1919 plugins : [ "@typescript-eslint" ] ,
2020 rules : {
21- "@typescript-eslint/require-array-sort-compare" : "off" ,
21+ "@typescript-eslint/comma-dangle" : [
22+ "error" ,
23+ {
24+ arrays : "only-multiline" ,
25+ objects : "only-multiline" ,
26+ imports : "only-multiline" ,
27+ functions : "only-multiline" ,
28+ enums : "only-multiline" ,
29+ } ,
30+ ] ,
2231 "@typescript-eslint/consistent-type-definitions" : [ "error" , "type" ] ,
2332 "@typescript-eslint/consistent-type-imports" : "off" ,
2433 "@typescript-eslint/explicit-function-return-type" : "off" ,
2534 "@typescript-eslint/explicit-module-boundary-types" : "off" ,
2635 "@typescript-eslint/generic-type-naming" : "off" ,
27- "@typescript-eslint/naming-convention" : "off" ,
2836 "@typescript-eslint/init-declarations" : "off" ,
2937 "@typescript-eslint/method-signature-style" : "off" ,
38+ "@typescript-eslint/naming-convention" : "off" ,
3039 "@typescript-eslint/no-explicit-any" : "off" ,
3140 "@typescript-eslint/no-implicit-any-catch" : "off" ,
3241 "@typescript-eslint/no-magic-numbers" : "off" ,
@@ -40,27 +49,19 @@ module.exports = {
4049 "@typescript-eslint/no-unsafe-member-access" : "off" ,
4150 "@typescript-eslint/no-unsafe-return" : "off" ,
4251 "@typescript-eslint/no-untyped-public-signature" : "off" ,
43- "@typescript-eslint/no-unused-vars" : "off" ,
4452 "@typescript-eslint/no-unused-vars-experimental" : "off" ,
53+ "@typescript-eslint/no-unused-vars" : "off" ,
4554 "@typescript-eslint/no-use-before-define" : "off" ,
4655 "@typescript-eslint/prefer-readonly-parameter-types" : "off" ,
4756 "@typescript-eslint/prefer-reduce-type-parameter" : "off" ,
57+ "@typescript-eslint/require-array-sort-compare" : "off" ,
4858 "@typescript-eslint/require-await" : "off" ,
4959 "@typescript-eslint/restrict-template-expressions" : "off" ,
5060 "@typescript-eslint/return-await" : "off" ,
61+ "@typescript-eslint/sort-type-union-intersection-members" : "off" ,
5162 "@typescript-eslint/strict-boolean-expressions" : "off" ,
5263 "@typescript-eslint/switch-exhaustiveness-check" : "off" ,
5364 "@typescript-eslint/typedef" : "off" ,
54- "@typescript-eslint/comma-dangle" : [
55- "error" ,
56- {
57- arrays : "only-multiline" ,
58- objects : "only-multiline" ,
59- imports : "only-multiline" ,
60- functions : "only-multiline" ,
61- enums : "only-multiline" ,
62- } ,
63- ] ,
6465 "comma-dangle" : "off" ,
6566 "no-else-return" : "error" ,
6667 } ,
0 commit comments