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.
42 lines (40 loc) • 1.1 kB
JSON
{
"root": true,
"env": { "browser": true, "es2020": true },
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"ignorePatterns": ["dist", ".eslintrc.json"],
"parser": "@typescript-eslint/parser",
"plugins": ["react-refresh", "prettier", "import", "react"],
"rules": {
"react-refresh/only-export-components": ["warn", { "allowConstantExport": true }],
"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"
}
]
}
}