Skip to content
This repository has been archived by the owner on Oct 4, 2020. It is now read-only.

Commit

Permalink
Support dot files
Browse files Browse the repository at this point in the history
close #64
  • Loading branch information
gucong3000 committed Nov 6, 2017
1 parent f278312 commit 16c8ae8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
2 changes: 2 additions & 0 deletions lib/cli.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ describe('eclint cli', function() {
describe('check', () => {
it('All Files', () => {
return eclint(['check']).then(files => {
files = files.map(file => file.path);
expect(files).to.have.length.above(10);
expect(files).that.include(path.resolve(__dirname, '../.gitignore'));
});
});
it('Directories', () => {
Expand Down
18 changes: 10 additions & 8 deletions lib/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import _ = require('lodash');
import tap = require('gulp-tap');
import vfs = require('vinyl-fs');
import eclint = require('./eclint');
import excludeGitignore = require('gulp-exclude-gitignore');
import yargs = require('yargs');
import reporter = require('gulp-reporter');
import filter = require('gulp-filter');
Expand All @@ -13,15 +14,15 @@ import i18n = require('./i18n');
import path = require('path');
import fs = require('fs');

/*
* bugfix for thomas-lebeau/gulp-gitignore#2
*/
function gitignore(): Stream {
const stream = require('gulp-gitignore')();
if (stream instanceof Stream) {
return stream;
} else {
return gutil.noop();
try {
return excludeGitignore();
} catch (ex) {
if (ex.code === 'ENOENT') {
return gutil.noop();
} else {
throw ex;
}
}
}

Expand Down Expand Up @@ -191,6 +192,7 @@ function handler(yargs: Argv): Stream.Transform {
globs = globs.concat(ignore);
yargs.globs = globs;
return vfs.src(globs, {
dot: true,
stripBOM: false,
removeBOM: false,
})
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eclint",
"version": "2.4.3",
"version": "2.5.0",
"description": "Validate or fix code that doesn't adhere to EditorConfig settings or infer settings from existing code.",
"keywords": [
"editorconfig",
Expand Down Expand Up @@ -62,8 +62,8 @@
"dependencies": {
"editorconfig": "^0.15.0",
"file-type": "^7.2.0",
"gulp-exclude-gitignore": "^1.2.0",
"gulp-filter": "^5.0.1",
"gulp-gitignore": "^0.1.0",
"gulp-reporter": "^2.4.2",
"gulp-tap": "^1.0.1",
"gulp-util": "^3.0.8",
Expand Down

0 comments on commit 16c8ae8

Please sign in to comment.