Don’t name SASS files with underscores

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.
This commit is contained in:
Chris Hill-Scott
2016-04-01 08:06:52 +01:00
parent 51baa4a210
commit 121a6c83e6
2 changed files with 1 additions and 1 deletions

View File

@@ -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';