mirror of
https://github.com/topjohnwu/magiskbot.git
synced 2024-11-23 11:59:48 +00:00
22 lines
336 B
JSON
22 lines
336 B
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"extends": [
|
|
"airbnb-base",
|
|
"airbnb-typescript/base",
|
|
"prettier"
|
|
],
|
|
"parserOptions": {
|
|
"project": [
|
|
"./tsconfig.json"
|
|
]
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-param-reassign": "off"
|
|
}
|
|
}
|