Skip to content

Instantly share code, notes, and snippets.

View kasir-barati's full-sized avatar
Dedicated to achieve his goals

Kasir Barati kasir-barati

Dedicated to achieve his goals
View GitHub Profile
@kasir-barati
kasir-barati / .prettierignore
Last active March 6, 2023 15:52
My public prettier ignore which I use in my projects
Docker*
**/*.tsbuildinfo
.DS_STORE
# Angular app specific
.angular
/dist/
/build/
@kasir-barati
kasir-barati / .prettierrc
Last active March 6, 2023 15:52
My default prettierrc file
{
"arrowParens": "always",
"useTabs": false,
"bracketSpacing": true,
"endOfLine": "lf",
"printWidth": 70,
"quoteProps": "consistent",
"tabWidth": 4,
"trailingComma": "all",
"semi": true,
@devynspencer
devynspencer / ansible-github.yml
Last active September 23, 2023 08:37
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root