mirror of
https://github.com/remko/waforth
synced 2024-11-16 07:47:30 +01:00
29 lines
645 B
YAML
29 lines
645 B
YAML
env:
|
|
browser: true
|
|
es2021: true
|
|
node: true
|
|
extends:
|
|
- 'eslint:recommended'
|
|
- 'plugin:react/recommended'
|
|
- 'plugin:react-hooks/recommended'
|
|
- 'plugin:@typescript-eslint/recommended'
|
|
parser: '@typescript-eslint/parser'
|
|
parserOptions:
|
|
ecmaFeatures:
|
|
jsx: true
|
|
ecmaVersion: 12
|
|
sourceType: module
|
|
plugins:
|
|
- prettier
|
|
- react
|
|
- '@typescript-eslint'
|
|
settings:
|
|
react:
|
|
version: detect
|
|
rules:
|
|
"prettier/prettier": "error"
|
|
react/display-name: 0
|
|
react/prop-types: 0
|
|
"@typescript-eslint/explicit-module-boundary-types": 0
|
|
"@typescript-eslint/no-explicit-any": 0
|
|
"@typescript-eslint/no-non-null-assertion": 0
|