oe-ui-misc
Version:
collection of miscellaneous oe-ui Polymer components
43 lines • 799 B
JSON
{
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"semi": "error",
"no-unused-vars": ["error", {
"vars": "local",
"args": "none"
}],
"strict": "error",
"valid-jsdoc": ["warn", {
"requireReturn": false,
"prefer": {
"arg": "param",
"argument": "param",
"returns": "return"
},
"preferType": {
"Boolean": "boolean",
"Number": "number",
"String": "string",
"object": "Object"
}
}]
},
"env": {
"node":true,
"browser": true,
"es6": true
},
"globals": {
"customElements": true,
"HTMLImports": true,
"Polymer": true,
"ShadyDOM": true,
"ShadyCSS": true,
"JSCompiler_renameProperty": true
}
}