mirror of
https://github.com/scottbez1/smartknob.git
synced 2025-09-26 23:09:27 +08:00

- reworked smartknobjs into separate smartknobjs-node and smartknobjs-webserial packages - configured CI to build and deploy webserial example to https://scottbez1.github.io/smartknob/
20 lines
473 B
Plaintext
20 lines
473 B
Plaintext
// .eslintrc
|
|
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
|
|
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "error",
|
|
"@typescript-eslint/consistent-type-definitions": ["error", "type"]
|
|
},
|
|
|
|
"env": {
|
|
"node": true
|
|
}
|
|
}
|