From 1a71d3311e21676e725187118392d0f8c61eeb93 Mon Sep 17 00:00:00 2001 From: Nestor Vera Date: Mon, 4 Nov 2019 12:05:27 +0100 Subject: [PATCH] Add trailing commas to `simpleConfig.stub.js` Makes it consistent with `defaultConfig.stub.js` and saves people like me from adding them manually every time they start a project. --- stubs/simpleConfig.stub.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stubs/simpleConfig.stub.js b/stubs/simpleConfig.stub.js index dd6532cb4..af829e20f 100644 --- a/stubs/simpleConfig.stub.js +++ b/stubs/simpleConfig.stub.js @@ -1,7 +1,7 @@ module.exports = { theme: { - extend: {} + extend: {}, }, variants: {}, - plugins: [] + plugins: [], }