Skip to content

Commit

Permalink
fix: Fixing linting and formatting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
skycoop committed Sep 6, 2021
1 parent 381e2b2 commit 6b8ccad
Show file tree
Hide file tree
Showing 6 changed files with 858 additions and 363 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"plugins": ["@typescript-eslint"],
"extends": ["plugin:github/recommended"],
"plugins": ["@typescript-eslint", "mocha"],
"extends": ["@outofsyncstudios/eslint-config", "plugin:mocha/recommended", "plugin:import/typescript"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
Expand All @@ -10,5 +10,11 @@
"env": {
"node": true,
"es6": true
},
"rules": {
"id-length": ["error", { "exceptions": ["_"] }],
"mocha/no-mocha-arrows": ["off"],
// Disabling since prettier is very picky about when it will put stuff onto a newline
"newline-per-chained-call": ["off"]
}
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@outofsyncstudios:registry=https://npm.pkg.github.com
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"bracketSpacing": true,
"arrowParens": "avoid"
}
Loading

0 comments on commit 6b8ccad

Please sign in to comment.