jquery/dist/.eslintrc.json

22 lines
296 B
JSON
Raw Normal View History

{
"root": true,
"extends": "../.eslintrc-browser.json",
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "script"
},
"rules": {
// That is okay for the built version
"no-multiple-empty-lines": "off"
},
"globals": {
"define": false,
"module": true,
"Symbol": false
}
}