Complex Pandas is the ultimate to-do list app designed to streamline your productivity. With Complex Pandas, you can easily create personalized notes, set priorities, and organize your tasks into distinct to-do lists. Whether you're juggling work projects, personal errands, or study schedules, Complex Pandas offers a seamless and intuitive interface to keep you on track and ahead of your goals.
Once you've cloned this workspace, run npm install --force to install necessary dependencies. (Due to mish mash between trying to use yarn and npm, along with annoying peer dependencies that we couldn't figure out, this is the best way to go about setting up the repo. Not perfect, but it works :)
From there, to ensure everything is working, run in development mode in the browser with npm start in the parent COMPLEX_PANDAS directory.
Contributing
Prettier for code formatting and ESLint for linting. Please ensure your code adheres to these standards before submitting a pull request.
Our Prettier configuration is defined in the prettier.config.js file located in the root of the project. Here's a sample configuration:
module.exports = {
semi: true,
trailingComma: "es5",
singleQuote: true,
printWidth: 80,
tabWidth: 2,
};We primarily use VSCODE for development:
- Install Extensions for Prettier and ESLint
To check formatting: npm run prettier:check To format code: npm run prettier:write
To lint code: npm run lint
Our goal is to be similiar to the AirBNB style guide:

