diff --git a/frontend-tools/video-editor/.prettierignore b/frontend-tools/video-editor/.prettierignore index f59ec20a..e69de29b 100644 --- a/frontend-tools/video-editor/.prettierignore +++ b/frontend-tools/video-editor/.prettierignore @@ -1 +0,0 @@ -* \ No newline at end of file diff --git a/frontend-tools/video-editor/.prettierrc b/frontend-tools/video-editor/.prettierrc new file mode 100644 index 00000000..d8e8340b --- /dev/null +++ b/frontend-tools/video-editor/.prettierrc @@ -0,0 +1,20 @@ +{ + "printWidth": 100, + "tabWidth": 2, + "useTabs": false, + "semi": true, + "singleQuote": false, + "quoteProps": "as-needed", + "bracketSpacing": true, + "arrowParens": "always", + "trailingComma": "none", + "endOfLine": "lf", + "overrides": [ + { + "files": ["*.css", "*.scss"], + "options": { + "singleQuote": false + } + } + ] +}