We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a few dot files are erroneously executable files.
.editorconfig .eslint .gitignore .npmrc .travis.yml
.editorconfig
.eslint
.gitignore
.npmrc
.travis.yml
should be 644 not 755 permissions.
644
755
https://geoff.greer.fm/lscolors/ is a good resource for coloring files & directories by permissions in terminal. or cheat and steal mine (for macos):
$ echo "alias ls='CLICOLOR_FORCE=true LSCOLORS=aggxcxcxCxegedabagacad ls -Galh'" >> ~/.bash_profile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
a few dot files are erroneously executable files.
.editorconfig
.eslint
.gitignore
.npmrc
.travis.yml
should be
644
not755
permissions.https://geoff.greer.fm/lscolors/ is a good resource for coloring files & directories by permissions in terminal.
or cheat and steal mine (for macos):
The text was updated successfully, but these errors were encountered: