Skip to content

Commit

Permalink
Merge pull request #40 from sebastienrousseau/0.2.458
Browse files Browse the repository at this point in the history
0.2.458
  • Loading branch information
sebastienrousseau authored Oct 12, 2022
2 parents 0760d36 + 3e1281e commit 18cfb10
Show file tree
Hide file tree
Showing 118 changed files with 828 additions and 694 deletions.
3 changes: 1 addition & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.457) - https://dotfiles.io
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.458) - https://dotfiles.io
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# License: MIT

Expand Down Expand Up @@ -43,4 +43,3 @@ indent_style = tab

[*.json]
indent_style = tab

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.457) - https://dotfiles.io
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.458) - https://dotfiles.io
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# License: MIT

Expand Down
35 changes: 34 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
{
"asi": false,
"bitwise": true,
"boss": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"esnext": true,
"esversion": 8,
"node": true
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"iterator":true,
"lastsemic": true,
"latedef": true,
"maxcomplexity": 5,
"maxdepth": 2,
"maxlen": 140,
"maxstatements": 25,
"mocha": true,
"newcap": false,
"noarg": true,
"node": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"onecase": true,
"quotmark": true,
"regexp": true,
"smarttabs": true,
"strict": true,
"trailing": true,
"undef": true,
"unused": true,
"white": true
}
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.457) - https://dotfiles.io
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.458) - https://dotfiles.io
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# License: MIT
registry=https://npm.pkg.github.com/sebastienrousseau
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.457) - https://dotfiles.io
* 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.458) - https://dotfiles.io
* Copyright (c) Sebastien Rousseau 2022. All rights reserved
* License: MIT
*/
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env make -f

# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.457) - https://dotfiles.io
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.458) - https://dotfiles.io
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# License: MIT

Expand All @@ -16,7 +16,7 @@ backup: ## Backup your current dotfiles.
ifdef PNPM
pnpm run backup
else
sh $(HOMEDIR)/bin/dotfiles.sh backup
sh $(HOMEDIR)/scripts/dotfiles backup
endif

.PHONY: assemble
Expand All @@ -25,7 +25,7 @@ assemble: ## Prepare the dotfiles on your system.
ifdef PNPM
pnpm run assemble
else
sh $(HOMEDIR)/bin/dotfiles assemble
sh $(HOMEDIR)/scripts/dotfiles assemble
endif

.PHONY: copy
Expand All @@ -34,7 +34,7 @@ copy: ## Copy the dotfiles on your system.
ifdef PNPM
pnpm run copy
else
sh $(HOMEDIR)/bin/dotfiles copy
sh $(HOMEDIR)/scripts/dotfiles copy
endif

.PHONY: download
Expand All @@ -43,7 +43,7 @@ download: ## Download the dotfiles on your system.
ifdef PNPM
pnpm run download
else
sh $(HOMEDIR)/bin/dotfiles download
sh $(HOMEDIR)/scripts/dotfiles download
endif

.PHONY: unpack
Expand All @@ -52,7 +52,7 @@ unpack: ## Unpack the dotfiles on your system.
ifdef PNPM
pnpm run unpack
else
sh $(HOMEDIR)/bin/dotfiles unpack
sh $(HOMEDIR)/scripts/dotfiles unpack
endif

.PHONY: clean
Expand All @@ -61,7 +61,7 @@ clean:
ifdef PNPM
pnpm run clean
else
sh $(HOMEDIR)/bin/dotfiles clean
sh $(HOMEDIR)/scripts/dotfiles clean
endif

.PHONY: help
Expand Down
Loading

0 comments on commit 18cfb10

Please sign in to comment.