mirror of
https://github.com/netlight/my-finance-pal-backend.git
synced 2024-11-10 00:51:56 +01:00
27 lines
393 B
Text
27 lines
393 B
Text
|
{
|
||
|
"env": {
|
||
|
"es2021": true,
|
||
|
"node": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"standard-with-typescript",
|
||
|
"prettier"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"prettier"
|
||
|
],
|
||
|
"overrides": [
|
||
|
],
|
||
|
"ignorePatterns": [
|
||
|
"generated/**/*"
|
||
|
],
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": "latest",
|
||
|
"sourceType": "module",
|
||
|
"project": "tsconfig.json"
|
||
|
},
|
||
|
"rules": {
|
||
|
"prettier/prettier": "error"
|
||
|
}
|
||
|
}
|