logseq/packages/tldraw/.eslintrc

20 lines
600 B
Plaintext
Raw Normal View History

2022-05-16 11:55:07 +00:00
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
2022-05-30 07:22:35 +00:00
"ignorePatterns": ["*.js", "*.jsx"],
2022-05-16 11:55:07 +00:00
"overrides": [
{
// enable the rule specifically for TypeScript files
"files": ["*.ts", "*.tsx"],
"rules": {
2022-05-30 07:22:35 +00:00
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/camelcase": "off"
2022-05-16 11:55:07 +00:00
}
}
]
}