mirror of
https://github.com/arx-research/libhalo.git
synced 2026-01-07 20:33:57 -05:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "off"
|
|
}
|
|
}
|
|
);
|