mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
import eslint from '@eslint/js';
|
||
|
import tseslint from 'typescript-eslint';
|
||
|
|
||
|
export default tseslint.config(
|
||
|
eslint.configs.recommended,
|
||
|
...tseslint.configs.recommended,
|
||
|
);
|