Skip to content

Commit 2e8d03e

Browse files
AndyAndyClausen
Andy
authored andcommitted
init from existing
0 parents  commit 2e8d03e

22 files changed

+9283
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

.eslintrc.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
module.exports = {
2+
root: true,
3+
extends: [
4+
'plugin:@typescript-eslint/recommended',
5+
'plugin:@typescript-eslint/recommended-requiring-type-checking',
6+
'plugin:prettier/recommended',
7+
],
8+
parserOptions: {
9+
tsconfigRootDir: __dirname,
10+
project: ['tsconfig.json', 'tsconfig.lint.json', 'tsconfig.spec.json'],
11+
},
12+
overrides: [
13+
{
14+
files: '**/*.test.js',
15+
env: {
16+
jest: true,
17+
},
18+
},
19+
],
20+
rules: {
21+
'prettier/prettier': [
22+
'error',
23+
{
24+
singleQuote: true,
25+
trailingComma: 'es5',
26+
printWidth: 100,
27+
endOfLine: 'auto',
28+
tabWidth: 2,
29+
useTabs: false,
30+
},
31+
],
32+
},
33+
};

.gitignore

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
8+
# dependencies
9+
node_modules
10+
.yarn/*
11+
!.yarn/patches
12+
!.yarn/plugins
13+
!.yarn/releases
14+
!.yarn/sdks
15+
!.yarn/versions
16+
17+
# IDEs and editors
18+
/.idea
19+
.project
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
25+
26+
# IDE - VSCode
27+
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
33+
# misc
34+
/.sass-cache
35+
/connect.lock
36+
coverage
37+
/libpeerconnection.log
38+
npm-debug.log
39+
yarn-error.log
40+
testem.log
41+
/typings
42+
43+
# System Files
44+
.DS_Store
45+
Thumbs.db
46+
47+
.angular

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint-staged

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Add files here to ignore them from prettier formatting
2+
3+
/dist
4+
/coverage
5+
/.yarn
6+
/node_modules
7+
/.husky
8+
/.vscode

.prettierrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"printWidth": 100,
5+
"endOfLine": "auto",
6+
"tabWidth": 2,
7+
"useTabs": false
8+
}

.yarn/releases/yarn-3.2.1.cjs

+786
Large diffs are not rendered by default.

.yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-3.2.1.cjs

0 commit comments

Comments
 (0)