fix: Made Prettier use tabs instead of spaces to format files (#177)

* fix: Made Prettier use tabs instead of spaces to format files

* fix: Fixed a typo
This commit is contained in:
PolpOnline 2022-01-24 21:01:25 +01:00 committed by GitHub
parent c5df874045
commit 162c6bb1bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

4
.gitignore vendored
View file

@ -299,3 +299,7 @@ yarn-error.log
# Explicitly include Travis CI configuration
# that were being hit by the .gitignore rule .*
!.travis.yml
# Explicitly include Prettier configuration
# that was being hit by the .gitignore rule .*
!.prettierrc

3
.prettierrc Normal file
View file

@ -0,0 +1,3 @@
{
"useTabs": true
}