Skip to content

Commit

Permalink
feat: add more dependencies for lavalink api
Browse files Browse the repository at this point in the history
  • Loading branch information
Fab1o0107 committed Dec 19, 2023
1 parent 43c0e2b commit f73c86d
Show file tree
Hide file tree
Showing 12 changed files with 1,556 additions and 535 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"root": true,
"extends": ["@clytage/eslint-config/typescript", "prettier"],
"plugins": ["prettier"],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "default",
"format": ["camelCase", "PascalCase", "snake_case", "UPPER_CASE"],
"leadingUnderscore": "allow",
"trailingUnderscore": "forbid"
},
{
"selector": "variable",
"modifiers": ["destructured"],
"format": null
}
],
"prettier/prettier": [
"error",
{
"useTabs": true,
"endOfLine": "lf",
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120,
"quoteProps": "as-needed"
}
]
},
"ignorePatterns": ["dist"]
}
102 changes: 16 additions & 86 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,100 +1,30 @@
# Logs
# Packages
node_modules/

# Log files
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# Environment for nodejs
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
# TypeScript Generate Output
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/
# Miscellaneous
.tmp/
.vscode/*
!.vscode/settings.json

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port
# Cache
.cache/
.eslintcache
.prettiercache
.tsbuildinfo
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
20
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

13 changes: 13 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Packages
node_modules/

# Auto Generated
pnpm-lock.yaml
dist
CHANGELOG.md

# Cache
.cache/
.eslintcache
.prettiercache
.tsbuildinfo
9 changes: 9 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"$schema": "https://json.schemastore.org/prettierrc.json",
"useTabs": true,
"endOfLine": "lf",
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120,
"quoteProps": "as-needed"
}
39 changes: 0 additions & 39 deletions Dockerfile

This file was deleted.

Loading

0 comments on commit f73c86d

Please sign in to comment.