mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
12 lines
275 B
JavaScript
12 lines
275 B
JavaScript
// @ts-check
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
{
|
|
ignores: ['**/node_modules/', '**/dist/', '**/build/', '**/out/'],
|
|
},
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.strict
|
|
);
|