From fc0ccde50a32c0afdcef7210b979fe5fec9438f8 Mon Sep 17 00:00:00 2001 From: HfjNUlYZ Date: Thu, 5 Dec 2024 01:31:23 +0800 Subject: [PATCH] 1 555 Signed-off-by: HfjNUlYZ --- .eslintrc.yml | 66 --------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 .eslintrc.yml diff --git a/.eslintrc.yml b/.eslintrc.yml deleted file mode 100644 index 174b9e8..0000000 --- a/.eslintrc.yml +++ /dev/null @@ -1,66 +0,0 @@ -extends: - - eslint:recommended - - plugin:@typescript-eslint/eslint-recommended - - plugin:@typescript-eslint/recommended - - plugin:@typescript-eslint/recommended-requiring-type-checking - - plugin:prettier/recommended -plugins: - - '@typescript-eslint' -parser: '@typescript-eslint/parser' -parserOptions: - sourceType: module - ecmaVersion: 2020 - project: ./tsconfig.json -rules: - prettier/prettier: - - error - - singleQuote: true - trailingComma: none - camelcase: "off" - '@typescript-eslint/naming-convention': - - warn - - selector: default - format: - - camelCase - - selector: variable - format: - - camelCase - - UPPER_CASE - leadingUnderscore: allow - trailingUnderscore: allow - - selector: class - format: - - PascalCase - trailingUnderscore: allow - - selector: parameter - format: - - camelCase - leadingUnderscore: allow - - selector: memberLike - modifiers: - - private - format: - - camelCase - leadingUnderscore: require - - selector: typeLike - format: - - PascalCase - '@typescript-eslint/no-use-before-define': off - no-empty-function: off - '@typescript-eslint/no-empty-function': - - error - - allow: - - constructors - 'no-fallthrough': warn - '@typescript-eslint/unbound-method': off - '@typescript-eslint/no-unsafe-assignment': off - '@typescript-eslint/restrict-plus-operands': off - '@typescript-eslint/no-unsafe-return': off - '@typescript-eslint/no-unsafe-member-access': off - '@typescript-eslint/no-unsafe-argument': off - '@typescript-eslint/no-unsafe-call': off - '@typescript-eslint/no-explicit-any': off - '@typescript-eslint/no-unused-vars': off - 'no-inner-declarations': off - 'no-global-assign': off - 'prefer-const': warn