mirror of
https://github.com/guicattani/obsidian-countdown-to.git
synced 2026-07-22 05:42:39 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
|
|
// @ts-check
|
||
|
|
|
||
|
|
import eslint from '@eslint/js';
|
||
|
|
import tseslint from 'typescript-eslint';
|
||
|
|
|
||
|
|
export default tseslint.config(
|
||
|
|
eslint.configs.recommended,
|
||
|
|
tseslint.configs.strict,
|
||
|
|
tseslint.configs.stylistic,
|
||
|
|
{
|
||
|
|
ignores: ["*.js", "*.mjs"],
|
||
|
|
}
|
||
|
|
);
|