{"id":23305615,"url":"https://github.com/antoniomori/react-base-cisa","last_synced_at":"2026-04-02T04:45:55.102Z","repository":{"id":268463918,"uuid":"904426922","full_name":"AntonioMori/react-base-cisa","owner":"AntonioMori","description":"Um template para desenvolvimento web utilizando react, vite, typescript, SWC (Speedy Web Compiler), EsLinter, EsLinter Stylistic, Zustand, AWS sandbox ( SDK, Lambda, API Gateway ) e Material UI","archived":false,"fork":false,"pushed_at":"2025-03-03T16:01:16.000Z","size":677,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T23:46:27.245Z","etag":null,"topics":["aws","eslint","eslint-stylistic","material-ui-react","mui","react","swc","typescript","vite","zustand"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AntonioMori.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-16T21:40:45.000Z","updated_at":"2025-03-03T16:01:19.000Z","dependencies_parsed_at":"2025-03-03T01:02:24.018Z","dependency_job_id":null,"html_url":"https://github.com/AntonioMori/react-base-cisa","commit_stats":null,"previous_names":["antoniomori/prettier-vite-config","antoniomori/react-base-cisa"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AntonioMori%2Freact-base-cisa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AntonioMori%2Freact-base-cisa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AntonioMori%2Freact-base-cisa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AntonioMori%2Freact-base-cisa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AntonioMori","download_url":"https://codeload.github.com/AntonioMori/react-base-cisa/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247569131,"owners_count":20959758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","eslint","eslint-stylistic","material-ui-react","mui","react","swc","typescript","vite","zustand"],"created_at":"2024-12-20T12:13:21.245Z","updated_at":"2025-12-30T20:03:07.450Z","avatar_url":"https://github.com/AntonioMori.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Oi devs do cisa, gente aqui um recado importante e depois o restante da aplicação + infos padrões do vite, react, aws etc\n\n### Comandos\n\nSó vai funcionar o eslint se tiver com a extensão do eslint preferencialmente da microsoft\nMaioria dos warnings e avisos tem auto-fix, via ctrl+s (salvando) ou via ctrl + alt + f (atalho para formatar)\n\n\n\n\n# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## React Compiler\n\nThe React Compiler is enabled on this template. See [this documentation](https://react.dev/learn/react-compiler) for more information.\n\nNote: This will impact Vite dev \u0026 build performances.\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:\n\n```js\nexport default defineConfig([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n\n      // Remove tseslint.configs.recommended and replace with this\n      tseslint.configs.recommendedTypeChecked,\n      // Alternatively, use this for stricter rules\n      tseslint.configs.strictTypeChecked,\n      // Optionally, add this for stylistic rules\n      tseslint.configs.stylisticTypeChecked,\n\n      // Other configs...\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n\nYou can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:\n\n```js\n// eslint.config.js\nimport reactX from 'eslint-plugin-react-x'\nimport reactDom from 'eslint-plugin-react-dom'\n\nexport default defineConfig([\n  globalIgnores(['dist']),\n  {\n    files: ['**/*.{ts,tsx}'],\n    extends: [\n      // Other configs...\n      // Enable lint rules for React\n      reactX.configs['recommended-typescript'],\n      // Enable lint rules for React DOM\n      reactDom.configs.recommended,\n    ],\n    languageOptions: {\n      parserOptions: {\n        project: ['./tsconfig.node.json', './tsconfig.app.json'],\n        tsconfigRootDir: import.meta.dirname,\n      },\n      // other options...\n    },\n  },\n])\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantoniomori%2Freact-base-cisa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fantoniomori%2Freact-base-cisa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fantoniomori%2Freact-base-cisa/lists"}