hedgedoc/.eslintrc.js
David Mehren af1ed8bb14
Cleanup ESLint config
This removes unneeded quotation marks and resets all
rules to their default error state.
Treating them only as warnings is not necessary anymore,
 as all warnings fail the CI since 4da68597.

Signed-off-by: David Mehren <git@herrmehren.de>
2021-08-14 23:42:26 +02:00

8 lines
101 B
JavaScript

module.exports = {
root: true,
extends: ['standard'],
env: {
node: true
},
rules: {}
}