alexa / alexa-skills-kit-sdk-for-nodejs

The Alexa Skills Kit SDK for Node.js helps you get a skill up and running quickly, letting you focus on skill logic instead of boilerplate code.
Apache License 2.0
3.13k stars 738 forks source link

chore: ignore .DS_Store file #586

Closed hideokamoto closed 5 years ago

hideokamoto commented 5 years ago

Description

In mac env, once open our project dir, the .DS_Store file will be create automatically. We don't want to commit the file, so we need to ignore the file.

Motivation and Context

When we want to contribute the project, the .DS_Store file disturb our workflow.

$ git status
On branch 2.0.x
Your branch is up-to-date with 'origin/2.0.x'.

Untracked files:
  (use "git add <file>..." to include in what will be committed)

        .DS_Store
        ask-sdk-core/.DS_Store
        ask-sdk-dynamodb-persistence-adapter/.DS_Store
        ask-sdk-runtime/.DS_Store
        ask-sdk-s3-persistence-adapter/.DS_Store
        ask-sdk-v1adapter/.DS_Store
        ask-sdk/.DS_Store

nothing added to commit but untracked files present (use "git add" to track)

We have to delete these file before run git add.

Testing

$ touch .DS_Store
$ git status

-> If the .DS_Store file does not show in the Untracked files list, it is OK.

Screenshots (if appropriate)

Types of changes

Checklist

License