cdp-lib
Version:
Contains npm modules used primarily by cdp boilerplate generator.
48 lines (45 loc) • 953 B
JSON
{
"extends": "eslint:recommended",
"env": {
"es6": <% es6 %>,
"browser": true,
"node": <% node %>
},
"globals": {
"$": true,
"_": true,
"Backbone": true,
"console": true,
"location": true,
"Symbol": true,
"Promise": true,
"CDP": true,
<%
"cordova": true,
<%/ cordova %>
<%
"Hammer": true,
<%/ hammerjs %>
<%
"IScroll": true,
<%/ iscroll %>
<%
"Flipsnap": true,
<%/ flipsnap %>
"module": true,
"require": true,
"define": true,
"exports": true
},
"rules": {
"indent": "off",
"semi": ["error", "always"],
"require-yield": "off",
"comma-dangle": "off",
"no-cond-assign": "off",
"no-unused-vars": ["error", {"args": "none", "varsIgnorePattern": "^TAG|^__" }],
"no-extra-boolean-cast": "off",
"no-constant-condition": "off",
"no-console": "off"
}
}