mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-05 19:22:07 +00:00
20 lines
428 B
JavaScript
20 lines
428 B
JavaScript
// @ts-check
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
/* Rules used for anything extension related (including types). */
|
|
export default tseslint.config({
|
|
extends: [
|
|
eslint.configs.recommended,
|
|
tseslint.configs.recommended,
|
|
],
|
|
files: [
|
|
'src/extension/**/*.ts',
|
|
'src/types/**/*.d.ts',
|
|
],
|
|
ignores: [
|
|
'src/types/schemas/**/*.d.ts',
|
|
'src/types/env.d.ts',
|
|
],
|
|
});
|