@@ -6,7 +6,6 @@ export default defineConfig({
66 'docs/.vitepress/config.mts' ,
77 'docs/.vitepress/theme/index.ts' ,
88 'templates' ,
9- '.prettierrc.js' ,
109 'test/jiti/migrations/**/*.js' ,
1110 'test/jiti/migrations/**/*.mjs' ,
1211 ] ,
@@ -127,11 +126,11 @@ export default defineConfig({
127126 //#region unicorn
128127 'unicorn/filename-case' : 'off' ,
129128 'unicorn/no-array-callback-reference' : 'off' , // reduces readability
130- 'unicorn/no-nested-ternary' : 'off' , // incompatible with prettier
129+ 'unicorn/no-nested-ternary' : 'off' , // incompatible with formatter
131130 'unicorn/no-null' : 'off' , // incompatible with TypeScript
132131 'unicorn/no-object-as-default-parameter' : 'off' , // https://github.com/sindresorhus/eslint-plugin-unicorn/issues/2199
133132 'unicorn/no-zero-fractions' : 'off' , // deactivated to raise awareness of floating operations
134- 'unicorn/number-literal-case' : 'off' , // incompatible with prettier
133+ 'unicorn/number-literal-case' : 'off' , // incompatible with formatter
135134 'unicorn/numeric-separators-style' : 'off' , // "magic numbers" may carry specific meaning
136135 'unicorn/prefer-string-slice' : 'off' , // string.substring is sometimes easier to use
137136 'unicorn/prefer-ternary' : 'off' , // ternaries aren't always better
0 commit comments