Last active
July 3, 2024 05:06
-
-
Save TaharaKazuki/7f98537ce95cf3ca070895ba517fb6ae to your computer and use it in GitHub Desktop.
Next.js用(ver14.2.3で動作確認済み)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "extends": ["next/core-web-vitals", "plugin:tailwindcss/recommended"], | |
| "plugins": ["unused-imports", "import", "tailwindcss"], | |
| "rules": { | |
| "no-unused-vars": "off", | |
| "tailwindcss/no-custom-classname": [ | |
| 2, | |
| { | |
| "allowedCustomClasses": [""] | |
| } | |
| ], | |
| "unused-imports/no-unused-imports": "error", | |
| "unused-imports/no-unused-vars": [ | |
| "warn", | |
| { | |
| "vars": "all", | |
| "varsIgnorePattern": "^_", | |
| "args": "after-used", | |
| "argsIgnorePattern": "^_" | |
| } | |
| ], | |
| "import/order": [ | |
| "error", | |
| { | |
| "groups": [ | |
| ["builtin", "external"], | |
| ["internal", "parent", "sibling", "index"] | |
| ], | |
| "newlines-between": "always", | |
| "alphabetize": { | |
| "order": "asc", | |
| "caseInsensitive": true | |
| } | |
| } | |
| ] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
内容はいたってよくある機能