refactor: move test/ and yarn to repo root

Also lint and format entire repo, beyond just wowchemy/ dir

URL encode `(` and `)` in `[#MadeWithWowchemy](...(..)...)` in Readme.md for Prettier
This commit is contained in:
George Cushen 2021-02-03 20:11:16 +00:00
commit 3f1c4b4df2
22 changed files with 55 additions and 59 deletions

17
.prettierrc.js Normal file
View file

@ -0,0 +1,17 @@
'use strict';
module.exports = {
bracketSpacing: false,
singleQuote: true,
jsxBracketSameLine: true,
trailingComma: 'all',
printWidth: 120,
overrides: [
{
files: ['*.html'],
options: {
parser: 'go-template',
},
},
],
};