Skip to content

Commit

Permalink
- fix: lint errors with unknown react properties
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed Oct 10, 2023
1 parent 4f30b53 commit 87cf95a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
"rules": {
"react/no-unknown-property": ["error", { "ignore": ["cmdk-input-wrapper"] }]
}
},
{
"files": ["*.js", "*.jsx"],
Expand Down
2 changes: 1 addition & 1 deletion apps/shinkai-visor/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["plugin:@nx/react", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"ignorePatterns": ["!**/*", "dist"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { ContentScriptMessageType } from '../../service-worker/communication/con
import { sendContentScriptMessage } from '../../service-worker/communication/content-script-messages';
import { store, storePersistor } from '../../store';
import themeStyle from '../../theme/styles.css?inline';
import { CommandShortcut } from '../ui/command';
import popupStyle from './action-button.css?inline';

let container = document.getElementById('shinkai-action-button-root');
Expand Down

0 comments on commit 87cf95a

Please sign in to comment.