mirror of
https://github.com/harivansh-afk/Saas-Teamspace-2.git
synced 2026-04-22 00:00:34 +00:00
initial commit
This commit is contained in:
commit
9963e01acc
158 changed files with 48198 additions and 0 deletions
68
eslint.config.mjs
Normal file
68
eslint.config.mjs
Normal file
|
|
@ -0,0 +1,68 @@
|
|||
import antfu from '@antfu/eslint-config';
|
||||
import nextPlugin from '@next/eslint-plugin-next';
|
||||
import jestDom from 'eslint-plugin-jest-dom';
|
||||
import jsxA11y from 'eslint-plugin-jsx-a11y';
|
||||
import playwright from 'eslint-plugin-playwright';
|
||||
import simpleImportSort from 'eslint-plugin-simple-import-sort';
|
||||
import tailwind from 'eslint-plugin-tailwindcss';
|
||||
import testingLibrary from 'eslint-plugin-testing-library';
|
||||
|
||||
export default antfu({
|
||||
react: true,
|
||||
typescript: true,
|
||||
|
||||
lessOpinionated: true,
|
||||
isInEditor: false,
|
||||
|
||||
stylistic: {
|
||||
semi: true,
|
||||
},
|
||||
|
||||
formatters: {
|
||||
css: true,
|
||||
},
|
||||
|
||||
ignores: [
|
||||
'migrations/**/*',
|
||||
'next-env.d.ts',
|
||||
],
|
||||
}, ...tailwind.configs['flat/recommended'], jsxA11y.flatConfigs.recommended, {
|
||||
plugins: {
|
||||
'@next/next': nextPlugin,
|
||||
},
|
||||
rules: {
|
||||
...nextPlugin.configs.recommended.rules,
|
||||
...nextPlugin.configs['core-web-vitals'].rules,
|
||||
},
|
||||
}, {
|
||||
plugins: {
|
||||
'simple-import-sort': simpleImportSort,
|
||||
},
|
||||
rules: {
|
||||
'simple-import-sort/imports': 'error',
|
||||
'simple-import-sort/exports': 'error',
|
||||
},
|
||||
}, {
|
||||
files: [
|
||||
'**/*.test.ts?(x)',
|
||||
],
|
||||
...testingLibrary.configs['flat/react'],
|
||||
...jestDom.configs['flat/recommended'],
|
||||
}, {
|
||||
files: [
|
||||
'**/*.spec.ts',
|
||||
'**/*.e2e.ts',
|
||||
],
|
||||
...playwright.configs['flat/recommended'],
|
||||
}, {
|
||||
rules: {
|
||||
'import/order': 'off', // Avoid conflicts with `simple-import-sort` plugin
|
||||
'sort-imports': 'off', // Avoid conflicts with `simple-import-sort` plugin
|
||||
'style/brace-style': ['error', '1tbs'], // Use the default brace style
|
||||
'ts/consistent-type-definitions': ['error', 'type'], // Use `type` instead of `interface`
|
||||
'react/prefer-destructuring-assignment': 'off', // Vscode doesn't support automatically destructuring, it's a pain to add a new variable
|
||||
'node/prefer-global/process': 'off', // Allow using `process.env`
|
||||
'test/padding-around-all': 'error', // Add padding in test files
|
||||
'test/prefer-lowercase-title': 'off', // Allow using uppercase titles in test titles
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue