mirror of
https://github.com/bckelley/cgm-remote-monitor.git
synced 2026-08-24 03:14:12 -05:00
Co-authored-by: Jakob Sandberg <jakobs@zillowgroup.com> Co-authored-by: Sulka Haro <sulka@sulka.net>
26 lines
469 B
JavaScript
26 lines
469 B
JavaScript
module.exports = {
|
|
"plugins": [
|
|
"security"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:security/recommended"
|
|
],
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"node": true,
|
|
"mocha": true,
|
|
"jquery": true
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": [
|
|
"error",
|
|
{
|
|
"varsIgnorePattern": "should|expect"
|
|
}
|
|
]
|
|
}
|
|
}; |