diff options
author | Mike Greiling <mike@pixelcog.com> | 2019-03-08 10:59:15 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2019-03-11 14:16:41 -0500 |
commit | c46b791911ae16f9ce06825c59a0ff93b4e4c789 (patch) | |
tree | e58abc15faa0a1a6381d9b3e8aaf4cd2fa625d19 /.prettierrc | |
parent | ea1ababae2e6a7f4c6fa5f2a3f6b94fcdb3b84bd (diff) | |
download | gitlab-ce-c46b791911ae16f9ce06825c59a0ff93b4e4c789.tar.gz |
Remove node 6 trailing comma support
This removes trailing commas from node scripts which previously
omitted them for compatiblity with node 6
Diffstat (limited to '.prettierrc')
-rw-r--r-- | .prettierrc | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/.prettierrc b/.prettierrc index 3384551aea5..5e2863a11f6 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,13 +1,5 @@ { "printWidth": 100, "singleQuote": true, - "trailingComma": "es5", - "overrides": [ - { - "files": ["**/app/**/*", "**/spec/**/*"], - "options": { - "trailingComma": "all" - } - } - ] + "trailingComma": "all" } |