Created
June 23, 2024 23:53
-
-
Save mattkenefick/6fd1c869b36b6bda5c36bde54d63a8d1 to your computer and use it in GitHub Desktop.
Boilerplate! Hidden files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.eslintrc.js | |
vue.config.js | |
shims-vue.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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