Switch linting to ESLint and Prettier #191
Reference in New Issue
Block a user
Delete Branch "feature/eslint-and-prettier"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Close #97.
I'm not sure why Travis is failing now.
.eslintignoreexcludesnode_modules/**.No need for this. In
https://eslint.org/docs/user-guide/configuring#eslintignore
you can read
I think it's the same for prettier.
Something I do sometimes is to symlink this *ignore to .gitignore (eg: that's what I do here https://github.com/MoOx/eslint-config-i-am-meticulous)
I think you can just do
"eslint ."File will be passed as argument, so you don't need to send
**/*.js. Just `"eslint --fix",@MoOx How about now?
Looks good!