Skip to content

Commit

Permalink
project reinit
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Bahdashych authored and Mikhail Bahdashych committed Apr 19, 2024
1 parent fac9b1f commit 8ac8a7c
Show file tree
Hide file tree
Showing 144 changed files with 513 additions and 10,239 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
sourceType: 'module'
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-non-null-assertion': 'off'
},
};
67 changes: 0 additions & 67 deletions .eslintrc.json

This file was deleted.

9 changes: 0 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,3 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Create the .ssh directory
run: mkdir ~/.ssh && chmod 700 ~/.ssh
- name: Install the deploy key
run: echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/deploy && chmod 600 ~/.ssh/deploy
- name: Create the known hosts file
run: echo "${{ secrets.KNOWN_HOSTS }}" > ~/.ssh/known_hosts
- name: Remotely trigger building and deployment script
run: ssh -i ~/.ssh/deploy deployer@${{ secrets.HOST_IP }}
76 changes: 39 additions & 37 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,44 +1,46 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# See http://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
# Compiled output
/dist
dist/
/tmp
/out-tsc
/bazel-out

# testing
# Node
/node_modules
npm-debug.log
yarn-error.log

# IDEs and editors
.idea/
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
testem.log
/typings

# next.js
/.next/
/out/

# production
/build

# misc
# System files
.DS_Store
*.pem

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

# vercel
.vercel

.env.local

# typescript
*.tsbuildinfo

.idea
Thumbs.db

package-lock.json
next-env.d.ts

*.key
*.pub

test.mjs
.angular/
7 changes: 0 additions & 7 deletions LICENSE

This file was deleted.

Loading

0 comments on commit 8ac8a7c

Please sign in to comment.