This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Twooth/.eslintrc.cjs

25 lines
420 B
JavaScript
Raw Normal View History

module.exports = {
extends: ['@vospel', '@unocss'],
env: {
browser: true,
node: true,
es2017: true,
},
overrides: [
{
files: ['*.cjs'],
env: {
node: true,
commonjs: true,
},
},
],
rules: {
'@typescript-eslint/indent': ['error', 'tab'],
'semi': ['error', 'always'],
'indent': 'off',
'no-tabs': ['error', { allowIndentationTabs: true }],
'jsonc/indent': ['error', 'tab'],
},
};