mirror of
https://github.com/leon-ai/leon.git
synced 2024-11-10 15:19:18 +03:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"extends": "airbnb-base",
|
|
"env": {
|
|
"node": true,
|
|
"browser": true,
|
|
"jest/globals": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021
|
|
},
|
|
"globals": {
|
|
"io": true
|
|
},
|
|
"plugins": [
|
|
"import",
|
|
"jest"
|
|
],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"babel-module": {
|
|
"alias": {
|
|
"@@": ".",
|
|
"@": "./server/src"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"rules": {
|
|
"no-multi-assign": "off",
|
|
"no-trailing-spaces": "off",
|
|
"linebreak-style": "off",
|
|
"indent": "off",
|
|
"strict": "off",
|
|
"no-console": "off",
|
|
"no-param-reassign": "off",
|
|
"no-shadow": "off",
|
|
"import/no-extraneous-dependencies": "off",
|
|
"import/no-dynamic-require": "off",
|
|
"prefer-promise-reject-errors": ["off"],
|
|
"no-async-promise-executor": ["off"],
|
|
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
|
|
"space-before-function-paren": ["error", "always"],
|
|
"prefer-destructuring": ["error", { "array": true, "object": true }],
|
|
"comma-dangle": ["error", "never"],
|
|
"semi": ["error", "never"]
|
|
}
|
|
}
|