18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
stylistic: {
|
|
indent: 4,
|
|
quotes: 'single',
|
|
},
|
|
rules: {
|
|
'node/prefer-global/process': 0,
|
|
'no-unused-expressions': 0,
|
|
'style/operator-linebreak': 0,
|
|
'style/brace-style': 0,
|
|
'style/comma-dangle': 0,
|
|
'no-new': 0,
|
|
'antfu/consistent-chaining': 0,
|
|
},
|
|
})
|