-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEAT: Create system prompt lib and fix some styling issue
- Loading branch information
1 parent
b104f0b
commit b88194c
Showing
20 changed files
with
685 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,54 @@ | ||
{ | ||
"extends": [ | ||
"airbnb", | ||
"airbnb/hooks", | ||
"plugin:react/recommended", | ||
"plugin:jsx-a11y/recommended", | ||
"plugin:import/errors", | ||
"plugin:import/warnings", | ||
"react-app", | ||
"prettier" | ||
], | ||
"plugins": [ | ||
"react", | ||
"jsx-a11y", | ||
"import" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2021, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
"extends": [ | ||
"airbnb", | ||
"airbnb/hooks", | ||
"plugin:react/recommended", | ||
"plugin:jsx-a11y/recommended", | ||
"plugin:import/errors", | ||
"plugin:import/warnings", | ||
"react-app", | ||
"prettier", | ||
], | ||
"plugins": ["react", "jsx-a11y", "import"], | ||
"parserOptions": { | ||
"ecmaVersion": 2021, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
}, | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"rules": { | ||
// Add any additional rules or overrides here | ||
"react/jsx-no-constructed-context-values": [ | ||
"off" | ||
], | ||
"jsx-a11y/label-has-associated-control": [ | ||
"off" | ||
], | ||
"import/no-extraneous-dependencies": [ | ||
"warn" | ||
], | ||
"react/display-name": [ | ||
"off" | ||
], | ||
"import/prefer-default-export": [ | ||
"off" | ||
], | ||
"react/forbid-prop-types": [ | ||
"off" | ||
], | ||
"no-shadow": [ | ||
"off" | ||
], | ||
"react/jsx-props-no-spreading": [ | ||
"off" | ||
], | ||
"react/prop-types": [ | ||
"off" | ||
], | ||
"react/function-component-definition": [ | ||
"off" | ||
], | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"js": "never", | ||
"jsx": "never" | ||
} | ||
] | ||
}, | ||
"env": { | ||
"browser": true, | ||
"es2021": true, | ||
}, | ||
"rules": { | ||
// Add any additional rules or overrides here | ||
"react/jsx-no-constructed-context-values": ["off"], | ||
"jsx-a11y/label-has-associated-control": ["off"], | ||
"import/no-extraneous-dependencies": ["warn"], | ||
"react/display-name": ["off"], | ||
"import/prefer-default-export": ["off"], | ||
"react/forbid-prop-types": ["off"], | ||
"no-shadow": ["off"], | ||
"react/jsx-props-no-spreading": ["off"], | ||
"react/prop-types": ["off"], | ||
"react/function-component-definition": ["off"], | ||
"import/extensions": [ | ||
"error", | ||
"ignorePackages", | ||
{ | ||
"js": "never", | ||
"jsx": "never", | ||
}, | ||
], | ||
"react/react-in-jsx-scope": ["off"], | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"alias": { | ||
"map": [["@", "./src"]], | ||
"extensions": [".js", ".jsx"], | ||
}, | ||
}, | ||
"settings": { | ||
"import/resolver": { | ||
"alias": { | ||
"map": [ | ||
[ | ||
"@", | ||
"./src" | ||
] | ||
], | ||
"extensions": [ | ||
".js", | ||
".jsx" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.