2020-02-17 02:35:05 -05:00
|
|
|
// this file was auto-generated, do not edit it directly.
|
|
|
|
// instead run bin/update_build_scripts from
|
|
|
|
// https://github.com/sharelatex/sharelatex-dev-environment
|
|
|
|
{
|
|
|
|
"extends": [
|
2021-07-13 06:55:18 -04:00
|
|
|
"eslint:recommended",
|
2020-02-17 02:35:05 -05:00
|
|
|
"standard",
|
2021-07-13 07:21:12 -04:00
|
|
|
"prettier"
|
2020-02-17 02:35:05 -05:00
|
|
|
],
|
|
|
|
"parserOptions": {
|
2020-08-10 12:01:11 -04:00
|
|
|
"ecmaVersion": 2018
|
2020-02-17 02:35:05 -05:00
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
"mocha",
|
|
|
|
"chai-expect",
|
|
|
|
"chai-friendly"
|
|
|
|
],
|
|
|
|
"env": {
|
|
|
|
"node": true,
|
|
|
|
"mocha": true
|
|
|
|
},
|
|
|
|
"rules": {
|
2021-07-13 07:21:12 -04:00
|
|
|
// TODO(das7pad): remove overrides after fixing all the violations manually (https://github.com/overleaf/issues/issues/3882#issuecomment-878999671)
|
|
|
|
// START of temporary overrides
|
|
|
|
"array-callback-return": "off",
|
|
|
|
"no-dupe-else-if": "off",
|
|
|
|
"no-var": "off",
|
|
|
|
"no-empty": "off",
|
|
|
|
"node/handle-callback-err": "off",
|
|
|
|
"no-loss-of-precision": "off",
|
|
|
|
"node/no-callback-literal": "off",
|
|
|
|
"node/no-path-concat": "off",
|
|
|
|
"prefer-regex-literals": "off",
|
|
|
|
// END of temporary overrides
|
|
|
|
|
2020-02-17 02:35:05 -05:00
|
|
|
// Swap the no-unused-expressions rule with a more chai-friendly one
|
|
|
|
"no-unused-expressions": 0,
|
2021-04-29 10:30:52 -04:00
|
|
|
"chai-friendly/no-unused-expressions": "error",
|
|
|
|
|
|
|
|
// Do not allow importing of implicit dependencies.
|
|
|
|
"import/no-extraneous-dependencies": "error"
|
2020-02-17 02:35:05 -05:00
|
|
|
},
|
|
|
|
"overrides": [
|
|
|
|
{
|
|
|
|
// Test specific rules
|
|
|
|
"files": ["test/**/*.js"],
|
|
|
|
"globals": {
|
|
|
|
"expect": true
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
// mocha-specific rules
|
|
|
|
"mocha/handle-done-callback": "error",
|
|
|
|
"mocha/no-exclusive-tests": "error",
|
|
|
|
"mocha/no-global-tests": "error",
|
|
|
|
"mocha/no-identical-title": "error",
|
|
|
|
"mocha/no-nested-tests": "error",
|
|
|
|
"mocha/no-pending-tests": "error",
|
|
|
|
"mocha/no-skipped-tests": "error",
|
|
|
|
"mocha/no-mocha-arrows": "error",
|
|
|
|
|
|
|
|
// chai-specific rules
|
|
|
|
"chai-expect/missing-assertion": "error",
|
|
|
|
"chai-expect/terminating-properties": "error",
|
|
|
|
|
|
|
|
// prefer-arrow-callback applies to all callbacks, not just ones in mocha tests.
|
|
|
|
// we don't enforce this at the top-level - just in tests to manage `this` scope
|
|
|
|
// based on mocha's context mechanism
|
|
|
|
"mocha/prefer-arrow-callback": "error"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// Backend specific rules
|
|
|
|
"files": ["app/**/*.js", "app.js", "index.js"],
|
|
|
|
"rules": {
|
|
|
|
// don't allow console.log in backend code
|
2021-04-29 10:30:52 -04:00
|
|
|
"no-console": "error",
|
|
|
|
|
|
|
|
// Do not allow importing of implicit dependencies.
|
|
|
|
"import/no-extraneous-dependencies": ["error", {
|
|
|
|
// Do not allow importing of devDependencies.
|
|
|
|
"devDependencies": false
|
|
|
|
}]
|
2020-02-17 02:35:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|