npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

eslint-config-marm

v0.2.0

Published

Schoolmarm for code lint and style

Downloads

14

Readme

eslint-config-marm

NPM version schoolmarm-standard-style Downloads

school·marm /ˈsko͞olˌmä(r)m/
a schoolmistress (typically used with reference to a woman regarded as prim, strict, and brisk in manner).

Do you remember when you were a child and had to stand in line. Well, schoolmarm is here to enforce alignment but only when you want to.

Note: version 0.2 and greater to be used with eslint v.2.0 and greater

Rules

Check feross/standard for the rules.

marm diverges from Standard in the following ways:

  • indent 2 spaces but only warn if in violation
  • operator-line-break set to beginning of line
  • allow multiple spaces
// doing this ... above three rules
  closeAria = createElement('span', {'aria-hidden': true}, '×')
            + createElement('span', {class: 'sr-only'}, 'Close')
  close     = createElement('button', {
                class: 'close',
                type: 'button',
                'data-dismiss': dismiss
            }, closeAria)
  • key-spacing however you wish
// doing this ...
    paths: {
      img   : 'assets/img',
      pdf   : 'assets/pdf',
      ico   : 'assets/ico',
      fonts : 'assets/fonts',
      js    : 'assets/js',
      css   : 'assets/css'
    }
  • curly has been turned off!
// I have no standard style when it comes to curly braces on if statements. Though I tend
// to always use curly braces for loops.
if (typeof a === 'object') return something

if (!a) {
  doThis(arg1, arg2)
} else {
  doThat(arg1, arg2)
}

if (c && d || e)
  return theOtherThing
else 
  console.log('showMe') 

The following three rules are optional with the Standard-plugin (they go either way, I choose never)

  • array-bracket-spacing -- never
  • computed-property-spacing -- never
  • object-curly-spacing -- never
  • space-before-keywords -- turned off. This conflicts with the above (array-bracket-spacing -- never) in certain circumstances
asyncReduce(fns, args, function (resultObject, v, k, done) {
  v.apply(that, resultObject.concat([function () { // <-- confusion here.
    var err = arguments[0]
    var nextargs = _baseSlice(arguments, 1)
    done(err, nextargs)
  }]))
}, function (err, res) {
  cb.apply(that, [err].concat(res))
})

Installation

$ npm install eslint-config-marm

Usage

Shareable configs are designed to work with the extends feature of .eslintrc files. Read up on how to use sharable configs at the eslint website.

To use the Schoolmarm Standard Style shareable config, first run this:

// global install if using eslint from command-line
npm install eslint-config-marm -g

Then, add this to your .eslintrc file:

{
  "extends": "marm"
}

Note: eslint-config- prefix is omitted since it is automatically assumed by ESLint.

You can override settings from the shareable config by adding them directly into your .eslintrc file, like the controversial no semicolons listed below.

About No Semicolons

At first, I was appalled, then read "An Open Letter to JavaScript Leaders Regarding Semicolons" and formed a new opinion. tldr version:

In general, \n ends a statement unless:

  1. The statment has an unclosed paren, array literal, or object literal or ends in some other way that is not a valid way to end a statement. (For instance, ending with . or ,)
  2. The line is -- or ++ (in which case it will decrement/increment the next token)
  3. It is a for(), while(), do, if() or else, and there is no {
  4. The next line starts with [, (, +, *, /, -, ,, ., or some other binary operator that can only be found between two tokens in a single expression.

License

ISC