.gitignore for Lens Studio
8 ignore rules for Lens Studio, ready to copy into your repository.
AR lens creation tool
The complete .gitignore for Lens Studio
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:34:05 UTC
# Technologies: Lens Studio
### Lens Studio ###
# macOS folder settings (Desktop Services Store)
.DS_Store
.idea
node_modules
yarn.lock
# Python bytecode cache directory
__pycache__/
# Python compiled bytecode
*.py[cod]
# Python/Jython class files
*$py.class
[Bb]ackup*
What these Lens Studio rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
.DS_Store |
macOS folder settings (Desktop Services Store) |
.idea |
General |
node_modules |
js # |
yarn.lock |
General |
Python #
| Pattern | What it ignores |
|---|---|
__pycache__/ |
Python bytecode cache directory |
*.py[cod] |
Python compiled bytecode |
*$py.class |
Python/Jython class files |
[Bb]ackup* |
Python # |
How to use this .gitignore for Lens Studio
- Copy the Lens Studio rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.