this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 36 lines 608 B view raw
1# Exclude everything by default 2* 3 4# Then explicitly include only what's needed 5 6# Include Go files and modules 7!go.mod 8!go.sum 9!server/ 10!db/ 11 12# For the frontend 13!mast-react-vite/src/ 14!mast-react-vite/public/ 15!mast-react-vite/index.html 16!mast-react-vite/package.json 17!mast-react-vite/package-lock.json 18!mast-react-vite/*.config.js 19!mast-react-vite/*.config.ts 20 21# Keep excluding node_modules even with the include patterns above 22**/node_modules 23 24# Exclude common large/unnecessary files 25**/.git 26**/.gitignore 27**/.DS_Store 28**/dist 29**/build 30**/*.log 31**/*.test.* 32**/*.spec.* 33**/*.tmp 34**/.env* 35**/.vscode 36**/.idea