angular-listview
Version:
simple, flexible, angular list view -- select, add, edit, remove
22 lines (18 loc) • 512 B
Plain Text
{
// enforcing
"freeze": true,
"latedef": "nofunc",
"noarg": true,
"nonbsp": true,
"nonew": true,
"undef": true,
"unused": true,
"strict": true,
// relaxing
"curly": false, // allow single-line if statements like `if (err) return done(err);`
"eqnull": true, // allow `x == null` as a shortcut for `(x === null || x === void 0)`
"expr": true, // allow things like `x || (x = 8)`
"funcscope": true,
"laxbreak": true, // allow multi-line ternary operator.
"predef": ["angular"]
}