62 lines
3.0 KiB
Plaintext
62 lines
3.0 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"));
|
|
/**
|
|
* Contains all of `recommended`, as well as additional strict rules that can also catch bugs.
|
|
* @see {@link https://typescript-eslint.io/users/configs#strict}
|
|
*/
|
|
exports.default = (plugin, parser) => [
|
|
(0, base_1.default)(plugin, parser),
|
|
(0, eslint_recommended_1.default)(plugin, parser),
|
|
{
|
|
name: 'typescript-eslint/strict',
|
|
rules: {
|
|
'@typescript-eslint/ban-ts-comment': [
|
|
'error',
|
|
{ minimumDescriptionLength: 10 },
|
|
],
|
|
'no-array-constructor': 'off',
|
|
'@typescript-eslint/no-array-constructor': 'error',
|
|
'@typescript-eslint/no-duplicate-enum-values': 'error',
|
|
'@typescript-eslint/no-dynamic-delete': 'error',
|
|
'@typescript-eslint/no-empty-object-type': 'error',
|
|
'@typescript-eslint/no-explicit-any': 'error',
|
|
'@typescript-eslint/no-extra-non-null-assertion': 'error',
|
|
'@typescript-eslint/no-extraneous-class': 'error',
|
|
'@typescript-eslint/no-invalid-void-type': 'error',
|
|
'@typescript-eslint/no-misused-new': 'error',
|
|
'@typescript-eslint/no-namespace': 'error',
|
|
'@typescript-eslint/no-non-null-asserted-nullish-coalescing': 'error',
|
|
'@typescript-eslint/no-non-null-asserted-optional-chain': 'error',
|
|
'@typescript-eslint/no-non-null-assertion': 'error',
|
|
'@typescript-eslint/no-require-imports': 'error',
|
|
'@typescript-eslint/no-this-alias': 'error',
|
|
'@typescript-eslint/no-unnecessary-type-constraint': 'error',
|
|
'@typescript-eslint/no-unsafe-declaration-merging': 'error',
|
|
'@typescript-eslint/no-unsafe-function-type': 'error',
|
|
'no-unused-expressions': 'off',
|
|
'@typescript-eslint/no-unused-expressions': 'error',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'error',
|
|
'no-useless-constructor': 'off',
|
|
'@typescript-eslint/no-useless-constructor': 'error',
|
|
'@typescript-eslint/no-wrapper-object-types': 'error',
|
|
'@typescript-eslint/prefer-as-const': 'error',
|
|
'@typescript-eslint/prefer-literal-enum-member': 'error',
|
|
'@typescript-eslint/prefer-namespace-keyword': 'error',
|
|
'@typescript-eslint/triple-slash-reference': 'error',
|
|
'@typescript-eslint/unified-signatures': 'error',
|
|
},
|
|
},
|
|
];
|