mirror of
https://github.com/ferdikoomen/openapi-typescript-codegen.git
synced 2026-02-01 16:46:58 +00:00
30 lines
885 B
JSON
30 lines
885 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"extends": [
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"env": {
|
|
"es6": true,
|
|
"node": true,
|
|
"jest": true
|
|
},
|
|
"plugins": [
|
|
"sort-imports-es6-autofix"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/no-inferrable-types": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0,
|
|
"@typescript-eslint/ban-ts-ignore": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"sort-imports-es6-autofix/sort-imports-es6": [2, {
|
|
"ignoreCase": false,
|
|
"ignoreMemberSort": false,
|
|
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
|
|
}],
|
|
"prettier/prettier": ["error"]
|
|
}
|
|
}
|