# eslint-config **Repository Path**: mirrors_limulus/eslint-config ## Basic Information - **Project Name**: eslint-config - **Description**: My ESLint configuration - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-19 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # @limulus/eslint-config My ESLint configuration, based on [eslint-config-universe](https://www.npmjs.com/package/eslint-config-universe). Feel free to use for your own projects, but it is entirely subject to my own whims. ## Set Up Add an `eslint.config.js`: ```js import config from '@limulus/eslint-config' export default [ ...config, { files: ['**/*.ts', '**/*.tsx', '**/*.d.ts'], languageOptions: { parserOptions: { project: './tsconfig.json' } } } ] ``` Add a `prettier.config.js`: ```js module.exports = { ...require('@limulus/eslint-config/prettier'), } ```