@qwezey/typescript
Version:
An opinionated and strict ESLint, Prettier, and TypeScript configuration with a simple setup command to get you started quickly.
10 lines • 576 B
JavaScript
import eslint from '@eslint/js';
import eslintPluginPrettier from 'eslint-plugin-prettier/recommended';
import { defineConfig } from 'eslint/config';
import tseslint from 'typescript-eslint';
export const qwezeyEslintConfig = defineConfig(eslint.configs.recommended, tseslint.configs.recommendedTypeChecked, tseslint.configs.stylisticTypeChecked, { languageOptions: { parserOptions: { projectService: true } } }, {
rules: {
'no-warning-comments': ['warn', { terms: ['todo'], location: 'start' }],
},
}, eslintPluginPrettier);
//# sourceMappingURL=eslint.js.map