mirror of
https://github.com/siwa-net/my-finance-pal.git
synced 2024-11-12 17:54:14 +01:00
33 lines
637 B
JSON
33 lines
637 B
JSON
{
|
|
"extends": [
|
|
"next",
|
|
"prettier",
|
|
"plugin:import/recommended",
|
|
"plugin:import/typescript"
|
|
],
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
"ecmaVersion": 2020
|
|
},
|
|
"plugins": [
|
|
"prettier",
|
|
"import"
|
|
],
|
|
"rules": {
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": ["builtin", "external", ["parent", "sibling", "index"], "type"],
|
|
"newlines-between": "always",
|
|
"pathGroupsExcludedImportTypes": ["builtin"],
|
|
"alphabetize": {
|
|
"order": "asc",
|
|
"caseInsensitive": true
|
|
}
|
|
}
|
|
],
|
|
"prettier/prettier": [
|
|
"error"
|
|
]
|
|
}
|
|
}
|