hal-rc
v0.0.8
Published
*hints-and-lints rc*
Downloads
102
Maintainers
Readme
hal (-) *rc
Hal should be, well, linted, to begin with.
Why
Or what is the point of this?
Node modules tend to be many.
One tends to repeat, oneself.
Over and over copy / pasting.
Even with the best practices.
For one example this could be the perfect implementation of your code linting best practices, as described in Henrik Joreteg's Human JavaScript / code for humans. Say one works on a project using airbnb's style. The following gulpfile.js
would give one gulp sourcegate
and gulp sourcegate:watch
tasks for writing .jshintrc
and .jscsrc
to a project's root:
var gulp = require('beverage')(require('gulp'), {
sourceopt: {preset: 'airbnb'},
sourcegate: [{recipe: 'jscs'}, {recipe: 'jshint'}]
})
One could setup linting rule overrides by mere configuration. No need to fork presets. If this became a coding standard for more than one project, one could reuse the configuration. But I'm getting ahead of myself. Back to hal-rc
and what it does.
Use
Make sourcegate more conveniently configurable, especially in the context of beverage, for the purpose of writing
.*rc
files that will setup hinting and linting rules for a project - without copy / paste. In this contexthal-rc
simply gets the options ready for callingsourcegate
with.var options = require('hal-rc')({ // options listed next }) // call sourcegate with the above (see the tests about how)
Offer
gulpfriendly
task(s) creation, while keeping it optional - i.e. call without thegulp
argument and build your own workflow using whatever approach / other tools you may prefer instead. However, if you do usegulp
, I highly recommend the even moregulpfriendly
beverage.require('hal-rc')({ // options listed next }, require('gulp')) // use gulp cli for running the sourcegate tasks
A place where I keep my own linting rules and preferences - in
rc/*
. This would be irrelevant for anybody else though feel free to follow / tweak my coding standard if you like. Unless of course we collaborate on some projects that are based on these settings. In which case we can negotiate the rules, in common. Easy setup makes for an easy start. I'm not religious, about what code should look like.
Configure
sourcegate: []
creates tasks that write configuration files, documented further downsourceopt:
module: 'a-node_modules-module-name'
optional like everything elseprefix
: '.'will look for
".#{recipe}rc"`, it can also be a path fragmentpreset: 'airbnb'
for example, in some cases there are presets across tools, this sets a default one for configuration DRY-ness; presets of tools installed in the project'snode_modules
have priority over presets formsourceopt.module
'snode_modules
, this way a project can have its own version of presetswatch: true
will create asourcegate:watch
task, ifhal-rc
is handedgulp
via the second argument
The above options can be used to setup configuration files from a template to the project's root with possible overrides. This is done with the sourcegate module and some example files would be: .jshintrc
, .jscsrc
, .eslintrc
, etc. If there is a package in node_modules that contains some / many / most / all your baseline defaults for coding style preferences / standards, sourcegateModule
will tell HAL about it so the config is DRYer. Or each template can set its own individual module / path. It could be a published module, or a git repo in devDependencies
. One gets a convenient setup for tools that use json config files, for example:
These tools are here called recipes. Any tool that looks for its configuration in a ".#{tool}rc" file, in a project's root dir - is automatically supported as a recipe. The config would look like:
{
recipe: 'name', // a tool's name
module: 'name', // overrides the sourcegateModule default
prefix: '.', // what goes between module and "#{recipe}rc"
preset: 'name', // so far only for `jscs`, or "airbnb", or "coffeescript-style-guide"
sources: [], // sourcegate's first argument - stuff to merge (several items in a row)
sources: {}, // shorthand for [{}] - concat doesn't care for the type of what is merged
options: {} // handed to sourcegate
}
Some tools, such as jscs have presets, use the preset
option for easy config.
In this case, jscs would have to be a dependency of either:
- the project using the
hal-rc
orbeverage
module - the configured
sourcegateModule
Presets are just a way to bootstrap one's styleduide, by taking defaults from another styleguide - the one providing the presets. It could be any node module or a non-packaged repo used as module with napa for example. If sourcegate
can read it, and your tools (linters) use JSON config, then it's supported already.
The recipe
, module
, prefix
and preset
options are merely conveniences.
Simplicity
One can always fallback to sourcegate options. The minimum needed in such a case is:
{
sources: [
// one or more things to merge, paths are ok too
],
options: {write: {path: 'name-me.json'}} // if no recipe or not writing ".#{tool}rc"
}
Overrides
There is a simpler explanation about how this works. If you state a "recipe"
, hal-rc it will deep-merge things in the following order:
- preset (some well-known style-guide that hal-rc supports)
- module (containing your own presets / preset-overrides)
- sources (final, per-project overrides)
The sources
are also deep-merged if an array. It's basically all concatenated into a single array and handed to sourcegate
, one config-writing recipe
/ item at a time.
Test
npm test
Develop
Unlicensed
This is free and unencumbered public domain software. For more information, see UNLICENSE.