Files
polymer/.eslintrc.json
2017-03-29 15:52:01 -07:00

25 lines
406 B
JSON

{
"extends": "eslint:recommended",
"ecmaVersion": 6,
"rules": {
"no-console": "off",
"no-var": "error",
"strict": "error"
},
"env": {
"browser": true,
"es6": true
},
"plugins": [
"html"
],
"globals": {
"customElements": true,
"HTMLImports": true,
"Polymer": true,
"ShadyDOM": true,
"ShadyCSS": true,
"JSCompiler_renameProperty": true
}
}