Skip to content

Commit

Permalink
Y2024
Browse files Browse the repository at this point in the history
  • Loading branch information
vprtsingh committed Sep 28, 2024
1 parent ff8bac8 commit 0bba1ef
Show file tree
Hide file tree
Showing 194 changed files with 1,004 additions and 5,710 deletions.
28 changes: 28 additions & 0 deletions templates/packages/node-google-sheet/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["google"],
"overrides": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [],
"rules": {
"object-curly-spacing": "off",
"indent": "off",
"require-jsdoc": "off",
"max-len": "off",
"operator-linebreak": "off",
"no-invalid-this": "off",
"new-cap": "off",
"space-before-function-paren": "off"
},
"settings": {
"react": {
"version": "detect"
}
}
}
39 changes: 39 additions & 0 deletions templates/packages/node-google-sheet/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
.pnp
.pnp.js
package-lock.json
google-service.json

# testing
coverage

# next.js
.next/
out/

# production
build
production
public/uploads/**/
libs
# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel
"postinstall": "cd example && yarn install"
1 change: 1 addition & 0 deletions templates/packages/node-google-sheet/.husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run prettier && npm run lint:fix
15 changes: 15 additions & 0 deletions templates/packages/node-google-sheet/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
node_modules
.storybook
example
src
*.tgz
.gitignore
rollup.config.js
.vscode
.eslintrc.json
.prettierrc
.eslintignore
.prettierignore
package-lock.json
yarn.lock
.husky
10 changes: 10 additions & 0 deletions templates/packages/node-google-sheet/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"singleQuote": true,
"printWidth": 80,
"proseWrap": "always",
"tabWidth": 4,
"useTabs": false,
"trailingComma": "all",
"bracketSpacing": true,
"semi": true
}
9 changes: 9 additions & 0 deletions templates/packages/node-google-sheet/.vscode/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"_comment": "The authentication module can be proceed in two ways. Using combination of username and password or token. The project.json which contains two of them at once is invalid.",
"project": "<your-key-here>",
"sonarURL": "<your-sonar-url>",
"auth": {
"username": "<sonar-username>",
"password": "<sonar-password>"
}
}
14 changes: 14 additions & 0 deletions templates/packages/node-google-sheet/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"editor.formatOnSave": true,
"editor.cursorBlinking": "blink",
"editor.cursorStyle": "line",
"editor.fontFamily": "'Operator Mono', 'SF Mono', Menlo, Operator Mono, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.fontWeight": "500",
"editor.letterSpacing": 0,
"editor.lineHeight": 26,
"editor.lineNumbers": "on",
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.detectIndentation": false
}
Loading

0 comments on commit 0bba1ef

Please sign in to comment.