Skip to content
View fabiofernandesx's full-sized avatar

Block or report fabiofernandesx

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
fabiofernandesx/README.md

Fabio Fernandes

Site Badge Linkedin Badge Gmail Badge

I’ve been helping companies to transform their big ideas in profitable business for more than 20 years

I value mixed scrum teams, open communication and delivering real business value

Agile and startup enthusiast, I love to see how software products connect different business areas and different people


Languages and Tools:

Visual Studio Code HTML5 CSS3 Sass JavaScript Typescript React Gatsby GraphQL Node.js Git Docker Kubernetes Raspberry Pi



---

Pinned Loading

  1. Basic typescript configuration Basic typescript configuration
    1
    {
    2
      "compilerOptions": {
    3
        "outDir": "./dist",
    4
        "module": "commonjs",
    5
        "target": "es2019",
  2. Husky config file to run lint-staged... Husky config file to run lint-staged on pre-commit
    1
    {
    2
      "hooks": {
    3
        "pre-commit": "lint-staged"
    4
      }
    5
    }
  3. Eslint with prettier config file Eslint with prettier config file
    1
    {
    2
      "env": {
    3
        "es2020": true,
    4
        "node": true
    5
      },
  4. Lint staged config file with lint an... Lint staged config file with lint and prettier
    1
    {
    2
      "*.ts": ["eslint 'src/**' --fix", "prettier --write"]
    3
    }