.gitignore for PureScript

6 ignore rules for PureScript, ready to copy into your repository.

Strongly-typed functional language

The complete .gitignore for PureScript

# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:27:29 UTC
# Technologies: PureScript

### PureScript ###
.psci_modules
.spago
# Bower dependencies
bower_components
node_modules
.psci
output

What these PureScript rules actually ignore

Every pattern below, and why it belongs in your .gitignore.

Dependencies

Pattern What it ignores
.psci_modules Dependencies
.spago Dependencies
bower_components Bower dependencies
node_modules Dependencies

Generated files

Pattern What it ignores
.psci Generated files
output Generated files

How to use this .gitignore for PureScript

  1. Copy the PureScript rules above, or download the file directly.
  2. Create a file named .gitignore at the root of your Git repository and paste the rules into it.
  3. If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
  4. Commit the .gitignore so everyone on the team shares the same rules.

Other Language .gitignore templates

See every Language template