Skip to content

Commit

Permalink
add uint support, refactor scope handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jfschwarz committed Feb 9, 2022
1 parent ae8de8e commit c116025
Show file tree
Hide file tree
Showing 16 changed files with 582 additions and 158 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"sort-imports": [
"error",
{ "ignoreDeclarationSort": true, "ignoreCase": true }
]
],
"@typescript-eslint/no-this-alias": "off"
}
}
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"spec": ["test/**/*.test.ts"],
"watchFiles": ["test/**/*.test.ts", "src/**/*.ts"],
"watchFiles": ["test/**/*.test.ts", "test/**/*.hbs", "src/**/*.ts"],
"require": "ts-node/register",
"timeout": 20000
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"fix:prettier": "prettier \"(src|test)/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "mocha",
"test:watch": "mocha -w"
"test:watch": "mocha -w",
"test:update": "UPDATE_SNAPSHOTS=true mocha -w"
},
"repository": {
"type": "git"
Expand Down
Loading

0 comments on commit c116025

Please sign in to comment.