forked from sunyu/CubismFramework
32 lines
882 B
YAML
32 lines
882 B
YAML
extends:
|
|
- eslint:recommended
|
|
- plugin:@typescript-eslint/eslint-recommended
|
|
- plugin:@typescript-eslint/recommended
|
|
- plugin:@typescript-eslint/recommended-requiring-type-checking
|
|
- plugin:prettier/recommended
|
|
- prettier/@typescript-eslint
|
|
plugins:
|
|
- '@typescript-eslint'
|
|
parser: '@typescript-eslint/parser'
|
|
parserOptions:
|
|
sourceType: module
|
|
ecmaVersion: 2020
|
|
project: ./tsconfig.json
|
|
rules:
|
|
prettier/prettier:
|
|
- error
|
|
- singleQuote: true
|
|
'@typescript-eslint/camelcase': warn
|
|
'@typescript-eslint/no-use-before-define': off
|
|
no-empty-function: off
|
|
'@typescript-eslint/no-empty-function':
|
|
- error
|
|
- allow:
|
|
- constructors
|
|
'@typescript-eslint/no-namespace': warn
|
|
'no-fallthrough': warn
|
|
'@typescript-eslint/unbound-method': off
|
|
'no-inner-declarations': off
|
|
'@typescript-eslint/class-name-casing': warn
|
|
'prefer-const': warn
|