I hereby claim:
- I am jessevdp on github.
- I am jessevdp (https://keybase.io/jessevdp) on keybase.
- I have a public key ASAlmzOCssp8zWUxmxvTfg-URd-MKyjPgm9h7UX_oJb7lgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
VScode settings for a project using typescript & ESLint. Requires VSCode ESLint plugin.
| mkdir project-folder | |
| cd project-folder | |
| git clone --bare repo.git .bare | |
| echo "gitdir: ./.bare" > .git | |
| git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*" | |
| git worktree add main main | |
| git worktree add ticket-num "feature/ticket-num" |
| class MyModel | |
| attribute :my_array_of_store_models, MyStoreModel.to_array_type, default: -> { [] } | |
| validates :my_array_of_store_models, | |
| store_model: true, | |
| "store_model_validators/unique": { attrs: [:name] } | |
| end |