Files
polymer/.eslintrc.json
Daniel Freedman 86510fb151 fix linting errors
2017-01-12 16:18:06 -08:00

25 lines
386 B
JSON

{
"extends": "eslint:recommended",
"ecmaVersion": 6,
"rules": {
"no-console": 0
},
"env": {
"browser": true,
"es6": true
},
"plugins": [
"html"
],
"globals": {
"CustomElements": true,
"customElements": true,
"HTMLImports": true,
"Polymer": true,
"ShadyDOM": true,
"ShadyCSS": true,
"ApplyShim": true,
"goog": true
}
}