You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
424 B
25 lines
424 B
{ |
|
"extends" : "openstack", |
|
|
|
"globals" : { |
|
"module": true |
|
}, |
|
|
|
"env" : { |
|
"node": 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 |
|
} |
|
|
|
}
|
|
|