mirror of
https://github.com/usatiuk/y.git
synced 2025-10-28 10:37:47 +01:00
29 lines
515 B
JSON
29 lines
515 B
JSON
{
|
|
"root": true,
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
"prettier"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-floating-promises": [
|
|
"error"
|
|
]
|
|
}
|
|
}
|