From 121a6c83e6b1d84a832b3db591cb90e7d853f006 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Fri, 1 Apr 2016 08:06:52 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20name=20SASS=20files=20with=20un?= =?UTF-8?q?derscores?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Underscores at the start of filenames are a convention that’s supposed to tell a preprocessor to ignore a file. Since we’re explicitly specifying which files need to be preprocessed, this isn’t necessary. Also, it makes SASS lint throw a warning. --- ...vious-next-navigation.scss => previous-next-navigation.scss} | 0 app/assets/stylesheets/main.scss | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename app/assets/stylesheets/components/{_previous-next-navigation.scss => previous-next-navigation.scss} (100%) diff --git a/app/assets/stylesheets/components/_previous-next-navigation.scss b/app/assets/stylesheets/components/previous-next-navigation.scss similarity index 100% rename from app/assets/stylesheets/components/_previous-next-navigation.scss rename to app/assets/stylesheets/components/previous-next-navigation.scss diff --git a/app/assets/stylesheets/main.scss b/app/assets/stylesheets/main.scss index 67e7ab9d2..07c64ae0d 100644 --- a/app/assets/stylesheets/main.scss +++ b/app/assets/stylesheets/main.scss @@ -47,7 +47,7 @@ $path: '/static/images/'; @import 'components/browse-list'; @import 'components/email-message'; @import 'components/api-key'; -@import "components/_previous-next-navigation"; +@import 'components/previous-next-navigation'; @import 'views/job'; @import 'views/edit-template';