diff --git a/.eslintrc.json b/.eslintrc similarity index 100% rename from .eslintrc.json rename to .eslintrc diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..b9d9ce5 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,5 @@ +dist/ +lib/ +node_modules/ +__tests__/__outputs__ +__tests__/__snapshots__ \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 0000000..1cd31b2 --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,10 @@ +{ + "printWidth": 120, + "tabWidth": 2, + "useTabs": false, + "semi": false, + "singleQuote": true, + "trailingComma": "none", + "bracketSpacing": true, + "arrowParens": "avoid" + } \ No newline at end of file