blessing-skin-server/.eslintrc.yml

28 lines
965 B
YAML
Raw Permalink Normal View History

2020-07-13 11:25:40 +08:00
root: true
parser: '@typescript-eslint/parser'
parserOptions:
project: tsconfig.eslint.json
plugins:
- '@typescript-eslint/eslint-plugin'
extends:
- eslint:recommended
- plugin:@typescript-eslint/recommended
- plugin:@typescript-eslint/recommended-requiring-type-checking
2022-02-13 12:09:08 +08:00
- plugin:react-hooks/recommended
2020-07-13 11:25:40 +08:00
rules:
prefer-const: error
'@typescript-eslint/no-unsafe-assignment': off
'@typescript-eslint/no-unsafe-member-access': off
'@typescript-eslint/no-unsafe-return': off
2020-07-20 22:19:24 +08:00
'@typescript-eslint/no-unused-vars': off
2020-07-13 11:25:40 +08:00
'@typescript-eslint/explicit-module-boundary-types': off
'@typescript-eslint/no-explicit-any': off
'@typescript-eslint/ban-ts-comment': off
'@typescript-eslint/no-non-null-assertion': off
'@typescript-eslint/no-floating-promises': off
'@typescript-eslint/no-misused-promises':
- off
- checksVoidReturn: false
2020-08-21 10:11:29 +08:00
'@typescript-eslint/unbound-method': off
2021-06-05 17:10:41 +08:00
'@typescript-eslint/restrict-template-expressions': off