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
Guz013 7c86e18f2b feat: mvp
It's completed, sort of.
Already know that it will be rewritten on 2.0.0.
But it is usable and just misses some features.

I'm tired.
2023-05-23 16:37:34 -03:00

25 lines
420 B
JavaScript

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'],
},
};