Skip to content

Instantly share code, notes, and snippets.

@mattkenefick
Created June 23, 2024 23:53
Show Gist options
  • Select an option

  • Save mattkenefick/6fd1c869b36b6bda5c36bde54d63a8d1 to your computer and use it in GitHub Desktop.

Select an option

Save mattkenefick/6fd1c869b36b6bda5c36bde54d63a8d1 to your computer and use it in GitHub Desktop.

Revisions

  1. mattkenefick created this gist Jun 23, 2024.
    20 changes: 20 additions & 0 deletions .browserslistrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    # This file is used by the build system to adjust CSS and JS output to support the specified browsers below.

    # For additional information regarding the format and rule options, please see:

    # https://github.com/browserslist/browserslist#queries

    # For the full list of supported browsers by the Angular framework, please see:

    # https://angular.io/guide/browser-support

    # You can see what browsers were selected by your queries by running:

    # npx browserslist

    last 1 Chrome version
    last 1 Firefox version
    last 2 Edge major versions
    last 2 Safari major versions
    last 2 iOS major versions
    Firefox ESR
    12 changes: 12 additions & 0 deletions .editorconfig
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@
    root = true

    [*]
    charset = utf-8
    end_of_line = lf
    insert_final_newline = true
    indent_size = 4
    indent_style = tab
    trim_trailing_whitespace = true

    [*.md]
    trim_trailing_whitespace = false
    3 changes: 3 additions & 0 deletions .eslintignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    .eslintrc.js
    vue.config.js
    shims-vue.d.ts
    25 changes: 25 additions & 0 deletions .gitignore
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    .DS_Store
    node_modules
    /dist
    /build
    *.zip

    # local env files
    .env
    .env.local
    .env.*.local

    # Log files
    npm-debug.log*
    yarn-debug.log*
    yarn-error.log*
    pnpm-debug.log*

    # Editor directories and files
    .idea
    .vscode
    *.suo
    *.ntvs*
    *.njsproj
    *.sln
    *.sw?
    17 changes: 17 additions & 0 deletions .prettierrc.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    {
    "arrowParens": "always",
    "bracketSpacing": true,
    "endOfLine": "lf",
    "htmlWhitespaceSensitivity": "ignore",
    "insertPragma": false,
    "printWidth": 150,
    "proseWrap": "preserve",
    "quoteProps": "consistent",
    "requirePragma": false,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 4,
    "trailingComma": "all",
    "useTabs": true,
    "vueIndentScriptAndStyle": true
    }