Skip to content
Snippets Groups Projects
.gitignore 554 B
Newer Older
  • Learn to ignore specific revisions
  • # from .gitignore
    
    chif's avatar
    chif committed
    # dependencies
    
    chif's avatar
    chif committed
    .pnp.js
    
    
    # Tests
    coverage
    .nyc_output
    
    chif's avatar
    chif committed
    
    
    # compiled output
    build
    dist
    
    chif's avatar
    chif committed
    
    
    chif's avatar
    chif committed
    .DS_Store
    
    
    chif's avatar
    chif committed
    npm-debug.log*
    yarn-debug.log*
    yarn-error.log*
    
    lerna-debug.log*
    
    # tools
    .eslintcache
    
    # IDE
    *.*workspace*
    /.idea
    .project
    .classpath
    .c9/
    *.launch
    .settings/
    *.sublime-workspace
    .vscode
    
    # commit these, but ignore format
    # lock files
    yarn.lock
    package-lock.json
    
    # assets
    *.png
    *.jpeg
    *.jpg
    *.ico
    
    # Docker files
    Dockerfile*
    Dockerfile.*
    docker-compose.*
    # Configuration files
    config/*