mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2024-12-08 00:45:32 +01:00
14 lines
371 B
JavaScript
14 lines
371 B
JavaScript
|
import typescriptESLint from "typescript-eslint"
|
||
|
import configConventions from "eslint-config-conventions"
|
||
|
|
||
|
export default typescriptESLint.config(...configConventions, {
|
||
|
files: ["**/*.ts", "**/*.tsx"],
|
||
|
languageOptions: {
|
||
|
parser: typescriptESLint.parser,
|
||
|
parserOptions: {
|
||
|
projectService: true,
|
||
|
tsconfigRootDir: import.meta.dirname,
|
||
|
},
|
||
|
},
|
||
|
})
|