94 lines
4.5 KiB
Plaintext
94 lines
4.5 KiB
Plaintext
"use strict";
|
|
// THIS CODE WAS AUTOMATICALLY GENERATED
|
|
// DO NOT EDIT THIS CODE BY HAND
|
|
// SEE https://typescript-eslint.io/users/configs
|
|
//
|
|
// For developers working in the typescript-eslint monorepo:
|
|
// You can regenerate it using `pnpm run generate-configs`
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const base_1 = __importDefault(require("./base"));
|
|
const eslint_recommended_1 = __importDefault(require("./eslint-recommended"));
|
|
/**
|
|
* A version of `strict` that only contains type-checked rules and disables of any corresponding core ESLint rules.
|
|
* @see {@link https://typescript-eslint.io/users/configs#strict-type-checked-only}
|
|
*/
|
|
exports.default = (plugin, parser) => [
|
|
(0, base_1.default)(plugin, parser),
|
|
(0, eslint_recommended_1.default)(plugin, parser),
|
|
{
|
|
name: 'typescript-eslint/strict-type-checked-only',
|
|
rules: {
|
|
'@typescript-eslint/await-thenable': 'error',
|
|
'@typescript-eslint/no-array-delete': 'error',
|
|
'@typescript-eslint/no-base-to-string': 'error',
|
|
'@typescript-eslint/no-confusing-void-expression': 'error',
|
|
'@typescript-eslint/no-deprecated': 'error',
|
|
'@typescript-eslint/no-duplicate-type-constituents': 'error',
|
|
'@typescript-eslint/no-floating-promises': 'error',
|
|
'@typescript-eslint/no-for-in-array': 'error',
|
|
'no-implied-eval': 'off',
|
|
'@typescript-eslint/no-implied-eval': 'error',
|
|
'@typescript-eslint/no-meaningless-void-operator': 'error',
|
|
'@typescript-eslint/no-misused-promises': 'error',
|
|
'@typescript-eslint/no-misused-spread': 'error',
|
|
'@typescript-eslint/no-mixed-enums': 'error',
|
|
'@typescript-eslint/no-redundant-type-constituents': 'error',
|
|
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error',
|
|
'@typescript-eslint/no-unnecessary-condition': 'error',
|
|
'@typescript-eslint/no-unnecessary-template-expression': 'error',
|
|
'@typescript-eslint/no-unnecessary-type-arguments': 'error',
|
|
'@typescript-eslint/no-unnecessary-type-assertion': 'error',
|
|
'@typescript-eslint/no-unnecessary-type-conversion': 'error',
|
|
'@typescript-eslint/no-unnecessary-type-parameters': 'error',
|
|
'@typescript-eslint/no-unsafe-argument': 'error',
|
|
'@typescript-eslint/no-unsafe-assignment': 'error',
|
|
'@typescript-eslint/no-unsafe-call': 'error',
|
|
'@typescript-eslint/no-unsafe-enum-comparison': 'error',
|
|
'@typescript-eslint/no-unsafe-member-access': 'error',
|
|
'@typescript-eslint/no-unsafe-return': 'error',
|
|
'@typescript-eslint/no-unsafe-unary-minus': 'error',
|
|
'@typescript-eslint/no-useless-default-assignment': 'error',
|
|
'no-throw-literal': 'off',
|
|
'@typescript-eslint/only-throw-error': 'error',
|
|
'prefer-promise-reject-errors': 'off',
|
|
'@typescript-eslint/prefer-promise-reject-errors': 'error',
|
|
'@typescript-eslint/prefer-reduce-type-parameter': 'error',
|
|
'@typescript-eslint/prefer-return-this-type': 'error',
|
|
'@typescript-eslint/related-getter-setter-pairs': 'error',
|
|
'require-await': 'off',
|
|
'@typescript-eslint/require-await': 'error',
|
|
'@typescript-eslint/restrict-plus-operands': [
|
|
'error',
|
|
{
|
|
allowAny: false,
|
|
allowBoolean: false,
|
|
allowNullish: false,
|
|
allowNumberAndString: false,
|
|
allowRegExp: false,
|
|
},
|
|
],
|
|
'@typescript-eslint/restrict-template-expressions': [
|
|
'error',
|
|
{
|
|
allowAny: false,
|
|
allowBoolean: false,
|
|
allowNever: false,
|
|
allowNullish: false,
|
|
allowNumber: false,
|
|
allowRegExp: false,
|
|
},
|
|
],
|
|
'no-return-await': 'off',
|
|
'@typescript-eslint/return-await': [
|
|
'error',
|
|
'error-handling-correctness-only',
|
|
],
|
|
'@typescript-eslint/unbound-method': 'error',
|
|
'@typescript-eslint/use-unknown-in-catch-callback-variable': 'error',
|
|
},
|
|
},
|
|
];
|