mirror of
				https://github.com/C4illin/ConvertX.git
				synced 2025-10-31 12:03:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import js from "@eslint/js";
 | |
| import eslintParserTypeScript from "@typescript-eslint/parser";
 | |
| import eslintPluginBetterTailwindcss from "eslint-plugin-better-tailwindcss";
 | |
| import simpleImportSortPlugin from "eslint-plugin-simple-import-sort";
 | |
| import globals from "globals";
 | |
| import tseslint from "typescript-eslint";
 | |
| 
 | |
| export default tseslint.config(
 | |
|   js.configs.recommended,
 | |
|   tseslint.configs.recommended,
 | |
|   {
 | |
|     plugins: {
 | |
|       "simple-import-sort": simpleImportSortPlugin,
 | |
|       "better-tailwindcss": eslintPluginBetterTailwindcss,
 | |
|     },
 | |
|     ignores: ["**/node_modules/**", "eslint.config.ts"],
 | |
|     languageOptions: {
 | |
|       parser: eslintParserTypeScript,
 | |
|       parserOptions: {
 | |
|         project: true,
 | |
|         ecmaFeatures: {
 | |
|           jsx: true,
 | |
|         },
 | |
|       },
 | |
|       globals: {
 | |
|         ...globals.node,
 | |
|       },
 | |
|     },
 | |
|     files: ["**/*.{tsx,ts}"],
 | |
|     settings: {
 | |
|       "better-tailwindcss": {
 | |
|         entryPoint: "src/main.css",
 | |
|       },
 | |
|     },
 | |
|     rules: {
 | |
|       ...(eslintPluginBetterTailwindcss.configs["recommended-warn"] ?? {}).rules,
 | |
|       ...(eslintPluginBetterTailwindcss.configs["stylistic-warn"] ?? {}).rules,
 | |
|       // "tailwindcss/classnames-order": "off",
 | |
|       "better-tailwindcss/enforce-consistent-line-wrapping": [
 | |
|         "warn",
 | |
|         {
 | |
|           group: "newLine",
 | |
|           printWidth: 100,
 | |
|         },
 | |
|       ],
 | |
|       "better-tailwindcss/no-unregistered-classes": [
 | |
|         "warn",
 | |
|         {
 | |
|           ignore: [
 | |
|             "^group(?:\\/(\\S*))?$",
 | |
|             "^peer(?:\\/(\\S*))?$",
 | |
|             "select_container",
 | |
|             "convert_to_popup",
 | |
|             "convert_to_group",
 | |
|             "target",
 | |
|             "convert_to_target",
 | |
|             "job-details-toggle",
 | |
|           ],
 | |
|         },
 | |
|       ],
 | |
|     },
 | |
|   },
 | |
|   {
 | |
|     files: ["**/*.{js,cjs,mjs,jsx}"],
 | |
|     extends: [tseslint.configs.disableTypeChecked],
 | |
|     languageOptions: {
 | |
|       globals: {
 | |
|         ...globals.browser,
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| );
 |