Files
sign/.eslintrc.cjs

33 lines
717 B
JavaScript
Raw Normal View History

2023-06-09 18:21:18 +10:00
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: [
'@documenso/eslint-config',
'plugin:package-json/recommended',
'plugin:import/recommended',
],
plugins: ['package-json', 'import', 'simple-import-sort'],
2023-06-09 18:21:18 +10:00
rules: {
'@next/next/no-img-element': 'off',
'no-multi-spaces': [
'error',
{
ignoreEOLComments: false,
exceptions: {
BinaryExpression: false,
VariableDeclarator: false,
ImportDeclaration: false,
Property: false,
},
},
],
'import/named': 'off',
'no-duplicate-imports': 'error',
2023-06-09 18:21:18 +10:00
},
settings: {
next: {
rootDir: ['apps/*/'],
},
},
};