0.0.2 • Published 10 years ago

gulp-check-file-naming-convention v0.0.2

Weekly downloads
550
License
MIT
Repository
github
Last release
10 years ago

gulp-check-file-naming-convention

NPM version Build Status Coverage Status Dependency Status

check-file-naming-convention plugin for gulp

Usage

First, install gulp-check-file-naming-convention as a development dependency:

npm install --save-dev gulp-check-file-naming-convention

Then, add it to your gulpfile.js:

var check-file-naming-convention = require("gulp-check-file-naming-convention");

gulp.src("./src/*.ext")
	.pipe(check-file-naming-convention({
		caseName: 'camelCase'
	}));

API

check-file-naming-convention(options)

options.case

Type: String

The case you wish to check.

available case
upperCase
upperCaseFirst
lowerCase
sentenceCase
titleCase
camelCase
pascalCase
snakeCase
paramCase
dotCase
pathCase
constantCase
swapCase

License

MIT License