CommunitySolidServer/test/.eslintrc.js
2020-09-17 11:55:49 +02:00

14 lines
309 B
JavaScript

module.exports = {
env: {
jest: true
},
rules: {
'@typescript-eslint/no-unsafe-assignment': 'off',
'unicorn/no-useless-undefined': 'off',
// Need these 2 to run tests for throwing non-Error objects
'@typescript-eslint/no-throw-literal': 'off',
'no-throw-literal': 'off',
}
};