remove prettier

This commit is contained in:
Joe Arndt 2026-02-07 21:58:23 -06:00
parent ccc6540ae8
commit d7ad5828af
5 changed files with 20 additions and 17 deletions

View file

@ -1,6 +1,5 @@
// @ts-check
import eslint from '@eslint/js';
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended';
import globals from 'globals';
import tseslint from 'typescript-eslint';
@ -10,7 +9,6 @@ export default tseslint.config(
},
eslint.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
eslintPluginPrettierRecommended,
{
languageOptions: {
globals: {
@ -21,15 +19,14 @@ export default tseslint.config(
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
}
}
},
{
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/no-unsafe-argument': 'warn',
"prettier/prettier": ["error", { endOfLine: "auto" }],
},
},
'@typescript-eslint/no-unsafe-argument': 'warn'
}
}
);