Skip to content

Commit

Permalink
chore(lint): enforce single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
stfsy committed Apr 1, 2024
1 parent de10f6e commit b6cad1b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"es2021": true
},
"extends": "eslint:recommended",
"overrides": [
],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest"
},
Expand All @@ -20,6 +19,13 @@
"semi": [
"error",
"never"
],
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
]
}
}
}

0 comments on commit b6cad1b

Please sign in to comment.