Skip to content

Commit

Permalink
Start of refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
JAForbes committed Feb 9, 2024
1 parent f8ac71f commit 8f35a50
Show file tree
Hide file tree
Showing 8 changed files with 1,832 additions and 1,594 deletions.
105 changes: 20 additions & 85 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,86 +1,21 @@
{
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"rules": {
"no-var": 1,
"no-undef": 2,
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "_"
}
],
"comma-style": [
"warn",
"first"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"operator-linebreak": [
"warn",
"before",
{
"overrides": {
"=": "after"
}
}
],
"quote-props": [
"warn",
"as-needed"
],
"no-const-assign": [
"warn"
],
"operator-assignment": [
"warn",
"never"
],
"no-dupe-keys": [
"warn"
],
"no-cond-assign": [
"warn"
],
"no-extra-parens": [
"warn"
],
"no-sparse-arrays": [
"warn"
],
"array-callback-return": [
"error"
],
"complexity": [
"warn"
],
"no-param-reassign": [
"warn"
],
"callback-return": [
"error"
],
"max-depth": [
"warn",
4
],
"max-len": [
"warn",
80,
4
],
"consistent-return": 2
}
}
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
}
}
36 changes: 0 additions & 36 deletions .gitlab-ci.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .vscode/settings.json

This file was deleted.

File renamed without changes.
Loading

0 comments on commit 8f35a50

Please sign in to comment.