Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade ESLint configuration + preact-cli + preact #1520

Merged
merged 8 commits into from
May 16, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove IE11 and old safari
  • Loading branch information
Pierre-Gilles committed May 14, 2022
commit 44729b52298acf1ec60436230ae484fe3de99510
4 changes: 3 additions & 1 deletion front/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"no-useless-concat": "error",
"prefer-template": "error",
"jest/expect-expect": "off",
"no-async-promise-executor": "off"
"jest/valid-expect": "off",
"no-async-promise-executor": "off",
"react/jsx-key": "off"
},
"env": {
"browser": true
Expand Down
3 changes: 3 additions & 0 deletions front/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@
},
"browserslist": [
"defaults",
"not ie 11",
"not ie_mob 11",
"not ios_saf 12.2-12.5",
"not dead"
]
}