mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
24 lines
433 B
JavaScript
24 lines
433 B
JavaScript
module.exports = {
|
|
extends: ['next', 'prettier'],
|
|
plugins: ['unicorn'],
|
|
rules: {
|
|
'no-unused-vars': [
|
|
'off',
|
|
{
|
|
args: 'after-used',
|
|
caughtErrors: 'none',
|
|
ignoreRestSiblings: true,
|
|
vars: 'all'
|
|
}
|
|
],
|
|
'prefer-const': 'error',
|
|
'react-hooks/exhaustive-deps': 'error',
|
|
'unicorn/filename-case': [
|
|
'error',
|
|
{
|
|
case: 'kebabCase'
|
|
}
|
|
]
|
|
}
|
|
};
|