mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-27 04:17:36 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Iad7f3ee0e5e826f00c4c95874371bfcd6a6a6964
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
import tseslint from 'typescript-eslint';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
|
|
export default [
|
|
...tseslint.configs.recommended,
|
|
eslintConfigPrettier,
|
|
{
|
|
files: ['**/*.{ts,tsx}'],
|
|
ignores: ['dist/', 'node_modules/', '.DS_Store', '*.md'],
|
|
settings: {
|
|
react: {
|
|
version: 'detect',
|
|
},
|
|
},
|
|
},
|
|
];
|