You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
566 B
YAML
34 lines
566 B
YAML
4 years ago
|
env:
|
||
|
browser: true
|
||
|
es2021: true
|
||
|
extends:
|
||
|
- 'eslint:recommended'
|
||
|
- 'plugin:react/recommended'
|
||
|
- 'plugin:@typescript-eslint/recommended'
|
||
|
parser: '@typescript-eslint/parser'
|
||
|
parserOptions:
|
||
|
ecmaFeatures:
|
||
|
jsx: true
|
||
|
ecmaVersion: 12
|
||
|
sourceType: module
|
||
|
plugins:
|
||
|
- react
|
||
|
- '@typescript-eslint'
|
||
|
rules:
|
||
|
indent:
|
||
|
- error
|
||
|
- 2
|
||
|
linebreak-style:
|
||
|
- error
|
||
|
- unix
|
||
|
quotes:
|
||
|
- error
|
||
|
- single
|
||
|
semi:
|
||
|
- error
|
||
|
- never
|
||
|
'@typescript-eslint/explicit-module-boundary-types':
|
||
|
- 0
|
||
|
'@typescript-eslint/no-explicit-any':
|
||
|
- 0
|