node-nocache
Version:
Add nocache headers to response
12 lines (11 loc) • 398 B
Plain Text
{
"node": true, // node.js mode on
"esversion": 6, // enable ECMAScript 6 features
"undef": true, // don't allow undefined variables
"eqnull": true, // allow == null which tests for null or undefined which is a good thing
"sub": true, // allow [] notation as well as dot notation (eg person['name'] vs person.name)
"predef": [
"describe",
"it"
]
}