Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
marwinlewis committed Aug 29, 2022
1 parent 6fdc762 commit a16c308
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
{
"extends": "next/core-web-vitals"
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["off", ""],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "double"],
"semi": ["error", "never"],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
}
}

0 comments on commit a16c308

Please sign in to comment.