mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
91df20be6b
- add filestash workflow Close gh-2221
42 lines
583 B
JSON
42 lines
583 B
JSON
{
|
|
"root": true,
|
|
|
|
"extends": "jquery",
|
|
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*"],
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"globals": {
|
|
"fetch": false,
|
|
"Promise": false,
|
|
"require": false
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"sourceType": "module"
|
|
}
|
|
},
|
|
{
|
|
"files": ["./listeners.js"],
|
|
"env": {
|
|
"browser": true,
|
|
"node": false
|
|
},
|
|
"globals": {
|
|
"QUnit": false,
|
|
"Symbol": false
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 5,
|
|
"sourceType": "script"
|
|
},
|
|
"rules": {
|
|
"strict": ["error", "function"]
|
|
}
|
|
}
|
|
]
|
|
}
|