mirror of
https://github.com/jacoblearned/obsidian-template-by-note-name.git
synced 2026-07-22 11:30:27 +00:00
25 lines
455 B
JavaScript
25 lines
455 B
JavaScript
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommendedTypeChecked,
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: true,
|
|
tsconfigRootDir: import.meta.dirname,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
ignores: [
|
|
"version-bump.mjs",
|
|
"eslint.config.js",
|
|
"rollup.config.js",
|
|
"rollup.prod.config.js",
|
|
"docs/**",
|
|
"dist/**",
|
|
],
|
|
},
|
|
);
|