create-manu-app
Version:
Create a new Next.js project with Tailwind CSS and TypeScript pre-configured. Simplify your project setup process with this scaffolding tool and start building your web application with ease.
36 lines (35 loc) • 816 B
JSON
{
"extends": [
"next/core-web-vitals",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["prettier", "import"],
"rules": {
"prettier/prettier": [
"warn",
{
"endOfLine": "auto",
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true,
"bracketSpacing": true
}
],
"react/self-closing-comp": "warn",
"import/order": [
"warn",
{
"groups": ["builtin", "object", "external", "internal", "parent", "sibling", "index"],
"pathGroups": [
{
"pattern": "~/**",
"group": "external",
"position": "after"
}
],
"newlines-between": "always"
}
]
}
}