mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
25 lines
386 B
JSON
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
|
|
}
|
|
}
|