diff --git a/.jsbeautifyrc b/.jsbeautifyrc new file mode 100644 index 00000000..a55010d4 --- /dev/null +++ b/.jsbeautifyrc @@ -0,0 +1,25 @@ +{ + "editorconfig": false, + "indent_size": 2, + "end_with_newline": true, + "html": { + "brace_style": "collapse", + "indent_char": " ", + "indent_scripts": "normal", + "indent_inner_html": true, + "indent_empty_lines": false, + "wrap_line_length": 120, + "wrap_attributes": "force-expand-multiline", + "unformatted": [ + "sub", + "sup", + "b", + "i", + "u", + "em", + "strong" + ], + "preserve_newlines": true, + "max_preserve_newlines": 2 + } +} diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..a3d6be7c --- /dev/null +++ b/.prettierignore @@ -0,0 +1,4 @@ +node_modules/* +e2e/* +dist/* +src/assets/scss/bootstrap/* diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..102954b5 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,11 @@ +{ + "printWidth": 80, + "tabWidth": 2, + "useTabs": false, + "singleQuote": true, + "trailingComma": "all", + "bracketSpacing": true, + "arrowParens": "always", + "jsxBracketSameLine": false, + "semi": true +}