Skip to content

Commit

Permalink
feat: add Trans component to interpolate translation strings with its…
Browse files Browse the repository at this point in the history
… contents
  • Loading branch information
yassinedoghri committed Apr 24, 2022
1 parent 2c58974 commit 14ff1bd
Show file tree
Hide file tree
Showing 8 changed files with 14,637 additions and 5,455 deletions.
29 changes: 12 additions & 17 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
"env": {
"browser": true,
"es2021": true
},
"extends": ["standard", "plugin:prettier/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["prettier", "@typescript-eslint"],
"rules": {}
}
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] }
module.exports = { extends: ["@commitlint/config-conventional"] };
Loading

0 comments on commit 14ff1bd

Please sign in to comment.