diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..e40c90b --- /dev/null +++ b/.prettierrc @@ -0,0 +1,24 @@ +{ + "endOfLine": "lf", + "useTabs": false, + "tabWidth": 2, + "trailingComma": "all", + "insertPragma": false, + "printWidth": 80, + "semi": true, + "singleQuote": true, + "overrides": [ + { + "files": "*.md", + "options": { + "trailingComma": "none" + } + }, + { + "files": "*.json", + "options": { + "tabWidth": 4 + } + } + ] +}