mirror of
https://framagit.org/hubzilla/core.git
synced 2026-06-21 00:52:33 -04:00
32 lines
568 B
Plaintext
32 lines
568 B
Plaintext
{
|
|
"root": true,
|
|
"extends": "airbnb-base",
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"import/no-extraneous-dependencies": "off",
|
|
"no-param-reassign": "off",
|
|
"no-restricted-properties": "off",
|
|
"valid-jsdoc": ["error", {
|
|
"requireReturn": false
|
|
}]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": "test/**/*.spec.js",
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"Cropper": true,
|
|
"expect": true
|
|
},
|
|
"rules": {
|
|
"no-new": "off",
|
|
"no-unused-expressions": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|