style: add eslint support (#121)

This commit is contained in:
Damien Retzinger
2023-01-09 10:43:30 -05:00
committed by GitHub
parent d43068a144
commit c0390c8abd
4 changed files with 2117 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
root: true,
};
+5
View File
@@ -0,0 +1,5 @@
{
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
+2102 -1
View File
File diff suppressed because it is too large Load Diff
+4 -1
View File
@@ -23,10 +23,13 @@
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"esbuild": "^0.16.16",
"eslint": "^8.31.0",
"jest": "^28.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^28.0.8",
"typescript": "^4.8.4"
"typescript": "^4.9.4"
}
}