mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 05:46:16 +00:00
34 lines
848 B
Plaintext
Executable File
34 lines
848 B
Plaintext
Executable File
{
|
|
"root": true,
|
|
"extends": ["prettier"],
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": "latest"
|
|
},
|
|
"rules": {
|
|
"import/no-unresolved": "error",
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"quoteProps": "consistent",
|
|
"singleQuote": true,
|
|
"tabWidth": 4,
|
|
"trailingComma": "es5",
|
|
"useTabs": false
|
|
}
|
|
]
|
|
},
|
|
"plugins": ["import", "prettier"],
|
|
"settings": {
|
|
"import/parsers": {
|
|
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
},
|
|
"import/resolver": {
|
|
"typescript": {
|
|
"alwaysTryTypes": true,
|
|
"project": ["./tsconfig.base.json"]
|
|
}
|
|
}
|
|
}
|
|
}
|