From 0b4b7b75fc9114509f828cf5a198135fe9a12920 Mon Sep 17 00:00:00 2001 From: Pablo Brasero Date: Thu, 3 Feb 2022 15:28:44 +0000 Subject: [PATCH] Provide a stylelint config that we can tweak --- .hound.yml | 2 ++ .stylelintrc.json | 3 +++ 2 files changed, 5 insertions(+) create mode 100644 .stylelintrc.json diff --git a/.hound.yml b/.hound.yml index 612bc4ab7b..781d3a28f5 100644 --- a/.hound.yml +++ b/.hound.yml @@ -3,3 +3,5 @@ ruby: scss: enabled: true config_file: .scss-lint.yml +stylelint: + config_file: .stylelintrc.json diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000000..3171f405aa --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,3 @@ +{ + "extends": "@thoughtbot/stylelint-config" +}