stackviz/.eslintrc.json
Austin Clark bd6e4a2a96 Fix phantomjs package error and update eslint-config-openstack
Patches prior to this failed the `npm run lint` and `gulp unit` gate
tests due to a new versioning of eslint-config-openstack and renaming
of the phantomjs browser to `phantomjs-prebuilt`. This patches updates
the necessary deps in package.json so that gate tests can now run
successfully.

Change-Id: I8ad54b29d91801d09991496b1e5eb90680ace8e3
2016-03-10 13:34:03 -07:00

28 lines
471 B
JSON

{
"extends" : "openstack",
"globals" : {
"angular": false,
"module": false
},
"env" : {
"browser": true,
"jasmine": true
},
"rules" : {
"module-setter": 0,
"strict": [2,"global"],
"valid-jsdoc": 0,
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"no-extra-parens": [2, "functions"],
"complexity": 0,
"no-unused-vars": 0,
"guard-for-in": 0,
"quote-props": 0,
"no-use-before-define": 0
}
}