mirror of
https://github.com/hknsh/project-knedita.git
synced 2024-11-28 17:41:15 +00:00
17 lines
376 B
JSON
17 lines
376 B
JSON
{
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"plugins": ["prettier"],
|
|
"extends": ["plugin:prettier/recommended"],
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": ["./tsconfig.json"]
|
|
},
|
|
"rules": {
|
|
"@typescript-eslint/no-misused-promises": "off",
|
|
"@typescript-eslint/explicit-function-return-type": 1
|
|
}
|
|
}
|