magiskbot/.eslintrc.json
2022-01-28 00:54:45 -08:00

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"
}
}