mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00

* build/refactor: move lint/prettier packages to project root, install husky, add pre-commit hook * refactor: reformat files * build: put full eslintrc back with all rules
4 lines
106 B
JavaScript
4 lines
106 B
JavaScript
module.exports = {
|
|
'*.{js,jsx,ts,tsx}': ['eslint --fix', 'eslint'],
|
|
'*.json': ['prettier --write']
|
|
};
|