@@ -72,7 +72,7 @@ const p11tGroups = {
7272
7373const enableTypeCheckedRules = {
7474 ...tseslint . configs . strictTypeCheckedOnly
75- . map ( x => x . rules )
75+ . map ( ( x ) => x . rules )
7676 . reduce ( ( a , b ) => ( { ...a , ...b } ) , { } ) ,
7777 ...eslintPluginSafeTypeScript . configs . recommended . rules ,
7878 "@susisu/safe-typescript/no-unsafe-object-property-check" : "off" ,
@@ -90,7 +90,7 @@ const enableTypeCheckedRules = {
9090 } ] ,
9191} as const ;
9292
93- const disableTypeCheckedRules = Object . fromEntries ( Object . keys ( enableTypeCheckedRules ) . map ( x => [ x , "off" ] ) ) ;
93+ const disableTypeCheckedRules = Object . fromEntries ( Object . keys ( enableTypeCheckedRules ) . map ( ( x ) => [ x , "off" ] ) ) ;
9494
9595export default tseslint . config (
9696 eslintConfigFlatGitignore ( ) ,
@@ -211,7 +211,14 @@ export default tseslint.config(
211211 "simple-import-sort/exports" : "warn" ,
212212 "simple-import-sort/imports" : "warn" ,
213213 // Part: stylistic rules
214+ "@stylistic/arrow-parens" : [ "warn" , "always" ] ,
214215 "@stylistic/curly-newline" : [ "warn" , "always" ] ,
216+ "@stylistic/no-multi-spaces" : [ "warn" ] ,
217+ "@stylistic/operator-linebreak" : [
218+ "warn" ,
219+ "before" ,
220+ ] ,
221+ "@stylistic/quote-props" : [ "error" , "as-needed" ] ,
215222 // Part: perfectionist rules
216223 "perfectionist/sort-exports" : "off" ,
217224 "perfectionist/sort-imports" : "off" ,
0 commit comments