feat: column customization

This commit is contained in:
Shusui MOYATANI
2023-05-08 19:58:59 +09:00
parent 5b5c261285
commit f8fbc95ba7
49 changed files with 1178 additions and 307 deletions

View File

@@ -23,10 +23,19 @@ module.exports = {
ecmaFeatures: { jsx: true },
ecmaVersion: 2021,
},
plugins: ['import', 'solid', 'jsx-a11y', 'prettier', '@typescript-eslint', 'tailwindcss'],
plugins: [
'import',
'no-relative-import-paths',
'solid',
'jsx-a11y',
'prettier',
'@typescript-eslint',
'tailwindcss',
],
rules: {
'no-alert': ['off'],
'no-console': ['off'],
'no-relative-import-paths/no-relative-import-paths': ['error', { rootDir: 'src', prefix: '@' }],
'import/extensions': [
'error',
'ignorePackages',