mirror of
https://github.com/zoriya/elysia-swagger.git
synced 2025-12-06 00:36:10 +00:00
24 lines
549 B
JavaScript
24 lines
549 B
JavaScript
module.exports = {
|
|
"env": {
|
|
"es2021": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/ban-types": 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off'
|
|
},
|
|
"ignorePatterns": ["example/*", "tests/**/*"]
|
|
}
|