Skip to content

Instantly share code, notes, and snippets.

@mattkenefick
Created June 23, 2024 23:53
Show Gist options
  • Save mattkenefick/6fd1c869b36b6bda5c36bde54d63a8d1 to your computer and use it in GitHub Desktop.
Save mattkenefick/6fd1c869b36b6bda5c36bde54d63a8d1 to your computer and use it in GitHub Desktop.
Boilerplate! Hidden files
# 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
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
.eslintrc.js
vue.config.js
shims-vue.d.ts
.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?
{
"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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment