Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
refactor(eslint): add parser option (#39)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikita Almanov <131481562+nikkeyl@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and nikkeyl committed Jan 26, 2024
1 parent 454dcba commit 080b279
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"root": true,
"env": {
"browser": true,
"es6": true
},
"extends": ["airbnb-base"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"extends": ["airbnb-base", "plugin:unicorn/recommended"],
"plugins": ["import", "unicorn"],
"rules": {
"import/exports-last": "error",
Expand Down

0 comments on commit 080b279

Please sign in to comment.