mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
24 lines
564 B
JSON
24 lines
564 B
JSON
|
{
|
||
|
"eslintConfig": {
|
||
|
"extends": [
|
||
|
"eslint:recommended",
|
||
|
"plugin:@typescript-eslint/recommended",
|
||
|
"plugin:react-hooks/recommended"
|
||
|
],
|
||
|
"parser": "@typescript-eslint/parser",
|
||
|
"plugins": ["@typescript-eslint", "eslint-plugin-react-hooks"],
|
||
|
"root": true,
|
||
|
"settings": {
|
||
|
"import/resolver": {
|
||
|
"node": {
|
||
|
"paths": ["src"],
|
||
|
"extensions": [".js", ".jsx", ".ts", ".tsx"]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"rules": {
|
||
|
"react/jsx-filename-extension": [1, { "extensions": [".tsx", ".ts"] }]
|
||
|
}
|
||
|
}
|
||
|
}
|