Skip to content

Commit

Permalink
Merge branch 're-typings'
Browse files Browse the repository at this point in the history
  • Loading branch information
Seanitzel committed Sep 5, 2021
2 parents 75b4d35 + a298095 commit d609247
Show file tree
Hide file tree
Showing 74 changed files with 14,916 additions and 29,318 deletions.
Binary file modified .DS_Store
Binary file not shown.
31 changes: 0 additions & 31 deletions .babelrc

This file was deleted.

45 changes: 45 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
module.exports = {
'env': {
'es2021': true,
'node': true,
},
'extends': [
'eslint:recommended', 'plugin:@typescript-eslint/recommended',
],
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaVersion': 2021,
'sourceType': 'module',
},
'plugins': ['@typescript-eslint'],
'ignorePatterns': ['lib', 'node_modules'],
'rules': {
'indent': ['error', 2],
'linebreak-style': ['error', 'unix'],
'quotes': ['error','single'],
'semi': ['error', 'always'],
'comma-dangle': ['error', 'always-multiline'],
'space-before-function-paren': ['error', 'never'],
'keyword-spacing': ['error', {
before: true,
after: true,
overrides: {
if: { after: false },
for: { after: false },
},
}],
'object-curly-spacing': ['error', 'always'],
'array-bracket-spacing': ['error', 'never'],
'array-bracket-newline': ['error', 'consistent'],
'array-element-newline': ['error', 'never'],
'template-curly-spacing': ['error', 'never'],
'dot-notation': 'off',
'space-in-parens': ['error', 'never'],
camelcase: 'off',
'no-unused-vars': 'error',
'no-undef': 'off',

//typescript
'@typescript-eslint/no-var-requires': 'off',
},
};
18 changes: 0 additions & 18 deletions .eslintrc.js

This file was deleted.

1 change: 0 additions & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"require": [
"@babel/register",
"ts-node/register",
"./test/bootstrap.js"
]
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ docs/
webpack.config.js
### Linux ###
*~
.eslintrc.cjs

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
Expand Down
2 changes: 1 addition & 1 deletion .nycrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"extension": [".js", ".ts"],
"reporter": ["lcov", "text", "html"],
"require": ["@babel/register","ts-node/register"],
"sourceMap": false,
"sourceMap": true,
"instrument": false,
"cache": false,
"all": true,
Expand Down
38 changes: 0 additions & 38 deletions .semaphore/semaphore.yml

This file was deleted.

Loading

0 comments on commit d609247

Please sign in to comment.