Skip to content

Commit

Permalink
Project setup
Browse files Browse the repository at this point in the history
- NextJs
- ESLint
- Prettier
- TailwindCSS
  • Loading branch information
SandroMaglione committed Aug 10, 2021
1 parent db00424 commit 5c4a455
Show file tree
Hide file tree
Showing 12 changed files with 1,651 additions and 243 deletions.
20 changes: 19 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
{
"extends": ["next", "next/core-web-vitals"]
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:@typescript-eslint/recommended",
"next",
"next/core-web-vitals",
"prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"]
}
7 changes: 7 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
printWidth: 80,
semi: true,
singleQuote: true,
tabWidth: 2,
useTabs: false,
};
Loading

0 comments on commit 5c4a455

Please sign in to comment.