element/.eslintrc

18 lines
286 B
Plaintext
Raw Normal View History

2016-07-27 14:15:02 +08:00
{
2016-10-19 14:53:32 +08:00
"globals": {
2019-08-09 17:53:49 +08:00
"ga": true,
"chrome": true
2016-10-19 14:53:32 +08:00
},
"plugins": ["html", "json"],
"extends": "elemefe",
"rules": {
"no-restricted-globals": ["error", "event", "fdescribe"]
},
2016-07-27 14:15:02 +08:00
"parserOptions": {
"ecmaVersion": 6,
2016-07-27 14:15:02 +08:00
"ecmaFeatures": {
2016-07-29 17:46:16 +08:00
"jsx": true
2016-07-27 14:15:02 +08:00
}
}
}