element/.eslintrc

21 lines
345 B
Plaintext
Raw Normal View History

2016-07-27 14:15:02 +08:00
{
2016-10-19 14:53:32 +08:00
"env": {
"mocha": true
},
"globals": {
"expect": true,
"sinon": true
},
"plugins": ["html", "json"],
"extends": "elemefe",
"rules": {
"no-restricted-globals": ["error", "event", "fdescribe"]
},
2016-07-27 14:15:02 +08:00
"parserOptions": {
"ecmaFeatures": {
2016-07-29 17:46:16 +08:00
"experimentalObjectRestSpread": true,
"jsx": true
2016-07-27 14:15:02 +08:00
}
}
}