From 3951d50a8902ad2cd8e1f0a2eac4c5bb303741c4 Mon Sep 17 00:00:00 2001
From: Andrew Nicols <andrew@nicols.co.uk>
Date: Wed, 12 Sep 2018 12:36:19 +0800
Subject: [PATCH] MDL-51177 core: Ignore built files in stylelint

---
 .stylelintignore | 1 +
 Gruntfile.js     | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.stylelintignore b/.stylelintignore
index 12ddb3eb6a5..be8cec8fbc4 100644
--- a/.stylelintignore
+++ b/.stylelintignore
@@ -1,4 +1,5 @@
 # Generated by "grunt ignorefiles"
+**/yui/build/*
 theme/bootstrapbase/style/
 theme/clean/style/custom.css
 theme/more/style/custom.css
diff --git a/Gruntfile.js b/Gruntfile.js
index 78583d0dbca..29d271c22f3 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -222,6 +222,7 @@ module.exports = function(grunt) {
       // Generate .stylelintignore.
       var stylelintIgnores = [
           '# Generated by "grunt ignorefiles"',
+          '**/yui/build/*',
           'theme/bootstrapbase/style/',
           'theme/clean/style/custom.css',
           'theme/more/style/custom.css',