mirror of
https://github.com/NotAShelf/nix-evaluator-stats.git
synced 2026-04-11 22:07:40 +00:00
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: I16fd771478019a1b8e716ca4bb9e63b86a6a6964
10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
import tseslint from 'typescript-eslint';
|
|
import eslintConfigPrettier from 'eslint-config-prettier';
|
|
|
|
export default [
|
|
...tseslint.configs.recommended,
|
|
eslintConfigPrettier,
|
|
{
|
|
ignores: ['dist/', 'node_modules/', '.DS_Store', '*.md'],
|
|
},
|
|
];
|