add correct tab spacing to the files (part 2 - leftover)
I forgot to do the indentation of these following files: - helmholtz-marketplace-app.js - helmholtz-marketplace-app.test.js Also, the `prettier` is configured to use 4 spacing as the default indentation. Pull-request: #6
... | ... | @@ -15,7 +15,8 @@ |
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"@open-wc/eslint-config": "^2.0.0", | ||
"@open-wc/prettier-config": "^0.1.10", | ||
"prettier": "^2.0.4", | ||
"eslint-config-prettier": "^6.11.0", | ||
"husky": "^1.0.0", | ||
"lint-staged": "^8.0.0", | ||
"@open-wc/testing-karma": "^3.0.0", | ||
... | ... | @@ -30,7 +31,11 @@ |
"eslint-config-prettier" | ||
] | ||
}, | ||
"prettier": "@open-wc/prettier-config", | ||
"prettier": { | ||
"singleQuote": true, | ||
"arrowParens": "avoid", | ||
"tabWidth": 4 | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "lint-staged" | ||
... | ... |
Please register or sign in to comment