mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 18:12:29 +08:00
24 lines
454 B
JavaScript
24 lines
454 B
JavaScript
![]() |
import baseConfig from "../../eslint.config.mjs";
|
||
|
|
||
|
export default [
|
||
|
...baseConfig,
|
||
|
{
|
||
|
"files": [
|
||
|
"**/*.json"
|
||
|
],
|
||
|
"rules": {
|
||
|
"@nx/dependency-checks": [
|
||
|
"error",
|
||
|
{
|
||
|
"ignoredFiles": [
|
||
|
"{projectRoot}/eslint.config.{js,cjs,mjs}"
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"languageOptions": {
|
||
|
"parser": (await import('jsonc-eslint-parser'))
|
||
|
}
|
||
|
}
|
||
|
];
|