Skip to content

Commit

Permalink
🐛 fix: no default email
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericrous committed Jul 12, 2021
1 parent 92d6588 commit 64471b0
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
2 changes: 2 additions & 0 deletions dot_eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

//minimal config
module.exports = {
root: true,
extends: ['eslint:recommended'],
env: {
browser: true,
es6: true,
node: true,
},
parserOptions: { ecmaVersion: 2021 },
rules: {
'arrow-body-style': ['error', 'as-needed'],
'consistent-this': ['error', 'void'],
Expand Down
13 changes: 5 additions & 8 deletions private_dot_config/git/config.tmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
[user]
name = {{ .name }}
email = {{ .email }}
signingkey = B6EEF2F6A5ABF833927091F70355FC4371714951
[branch]
autosetupmerge = always
autosetuprebase = always
Expand All @@ -23,7 +19,6 @@
whitespace = space-before-tab,-indent-with-non-tab,trailing-space
attributesfile = ~/.config/git/attributes
[commit]
gpgsign = true
template = ~/.config/git/git-templates/templates/message
[credential]
helper = cache
Expand Down Expand Up @@ -70,6 +65,8 @@
path = alias.toml
path = style.toml
[includeIf "gitdir:~/.local/share/chezmoi/**"]
path = ~/.config/git/gitconfig_perso.toml
[includeIf "gitdir:~/Developer/Perso/**"]
path = ~/.config/git/gitconfig_perso.toml
path = ~/.config/git/config_perso.toml
[includeIf "gitdir/i:~/Developer/Perso/**"]
path = ~/.config/git/config_perso.toml
[includeIf "gitdir/i:~/Developer/Storyful/**"]
path = ~/.config/git/config_storyful.toml
7 changes: 7 additions & 0 deletions private_dot_config/git/config_perso.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[user]
name = fredericrous
email = f[email protected]
signingkey = B6EEF2F6A5ABF833927091F70355FC4371714951
[commit]
gpgsign = true

7 changes: 7 additions & 0 deletions private_dot_config/git/config_storyful.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[user]
name = Frederic R
email = f[email protected]
signingkey = 0D462AB5F830995A960B126DB6017104C2C3777F
[commit]
gpgsign = true

0 comments on commit 64471b0

Please sign in to comment.