Leaflet/.eslintrc

22 lines
384 B
Plaintext
Raw Normal View History

2015-01-29 01:33:45 +08:00
{
"globals": {
"L": true,
},
"env": {
2015-09-25 18:40:21 +08:00
"commonjs": true,
"amd": true,
"node": false
2015-09-04 23:46:55 +08:00
},
2015-09-25 18:40:21 +08:00
"extends": "mourner",
"rules": {
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"indent": [2, "tab", {"VariableDeclarator": 0}],
2015-09-25 20:37:07 +08:00
"curly": 2,
"spaced-comment": 2,
2015-09-25 18:40:21 +08:00
"strict": 0,
"wrap-iife": 0,
"key-spacing": 0,
"consistent-return": 0
2015-09-25 18:40:21 +08:00
}
2015-01-29 01:33:45 +08:00
}