mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-10 15:19:18 +03:00
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:import/recommended",
|
|
"plugin:import/typescript",
|
|
"prettier"
|
|
],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"typescript": true,
|
|
"node": true
|
|
}
|
|
},
|
|
"parser": "@typescript-eslint/parser",
|
|
"env": {
|
|
"node": true,
|
|
"browser": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021
|
|
},
|
|
"globals": {
|
|
"io": true
|
|
},
|
|
"plugins": ["@typescript-eslint", "unicorn", "import"],
|
|
"ignorePatterns": "*.spec.js",
|
|
"rules": {
|
|
"no-async-promise-executor": ["off"],
|
|
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
|
|
"prefer-destructuring": ["error"],
|
|
"comma-dangle": ["error", "never"],
|
|
"semi": ["error", "never"],
|
|
"object-curly-spacing": ["error", "always"],
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"unicorn/prefer-node-protocol": "error",
|
|
"import/no-named-as-default": "off",
|
|
"import/no-named-as-default-member": "off",
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"groups": [
|
|
"builtin",
|
|
"external",
|
|
"internal",
|
|
"parent",
|
|
"sibling",
|
|
"index"
|
|
],
|
|
"newlines-between": "always"
|
|
}
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"rules": {
|
|
"@typescript-eslint/explicit-function-return-type": "error"
|
|
}
|
|
}
|
|
]
|
|
}
|