diff --git a/.prettierrc.json b/.prettierrc.json index eec6f1c..07760ea 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,11 +1,19 @@ { - "printWidth": 80, - "tabWidth": 4, - "useTabs": false, - "semi": true, - "singleQuote": false, - "trailingComma": "none", - "bracketSpacing": true, - "arrowParens": "avoid", - "parser": "typescript" -} \ No newline at end of file + "printWidth": 80, + "tabWidth": 2, + "useTabs": false, + "semi": true, + "singleQuote": false, + "trailingComma": "es5", + "bracketSpacing": true, + "arrowParens": "always", + "overrides": [ + { + "files": "*.ts", + "options": { + "tabWidth": 4, + "parser": "typescript" + } + } + ] +}