From 47e326d293aed24facb388083d287b97b98db4f0 Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Sat, 12 Aug 2017 21:40:07 -0500 Subject: [PATCH] Remove duplicate file --- vendor/stylelint/stylelint-mod.md | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 vendor/stylelint/stylelint-mod.md diff --git a/vendor/stylelint/stylelint-mod.md b/vendor/stylelint/stylelint-mod.md deleted file mode 100644 index 6b60771f..00000000 --- a/vendor/stylelint/stylelint-mod.md +++ /dev/null @@ -1,23 +0,0 @@ -Stylelint bundle file created by: - -1. Installing, or having stylelint installed in any repository - (`npm install stylelint`). -2. Installing, or having browserify installed globally - (`npm install browserify`). -3. Bundle the linter by typing this into the terminal: - `browserify -r stylelint -o bundle.js`. -4. Lastly, comment out the following lines - around 94413 to 94419: - - ```js - /* - try { - ignoreText = fs.readFileSync(absoluteIgnoreFilePath, "utf8"); - } catch (readError) { - if (readError.code !== FILE_NOT_FOUND_ERROR_CODE) throw readError; - } - */ - ``` - - This prevents a js error when stylelint attempts to access a local file. The - other `fs.readFile` entries are not accessed because we're using stylelint's - standalone method.