mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
9ad76fe80c
- `eslint` and `prettier` configs - `husky` to format and lint via pre-commit hook - `babel-plugin-transform-imports` to treeshake `lodash` and other packages if needed Lints and formats codebase.
7 lines
96 B
JavaScript
7 lines
96 B
JavaScript
module.exports = {
|
|
trailingComma: 'es5',
|
|
tabWidth: 2,
|
|
semi: true,
|
|
singleQuote: true,
|
|
};
|