Skip to content

Commit

Permalink
Merge branch 'master' into issue364
Browse files Browse the repository at this point in the history
  • Loading branch information
cceckman authored May 6, 2022
2 parents 3ce059e + c2e8909 commit 5661360
Show file tree
Hide file tree
Showing 12 changed files with 2,448 additions and 582 deletions.
32 changes: 32 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"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": {
"no-console": ["error", { "allow": ["log", "error", "info"] }]
},
"overrides": [
{
"files": "**/test/**/*.test.ts",
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}
]
}
3 changes: 1 addition & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ appveyor.yml
example/**
.vscodeignore
types/**
tslint.json
promo_images/**
promo_images/**
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
- Test backed code changes
- Tests can be run from the command line inside the devcontainer (-headless suffix)
- Test can be run using the `Run Extension Test` task in the vscode Run and Debug view
- New code matches existing style (enforced via tslint)
- New code matches existing style (enforced via eslint)
- Be kind and respectful

## Where to start
- Bug fixes always welcome
- New feature proposals go through a github issue or discussion
- New feature proposals go through a github issue or discussion
Loading

0 comments on commit 5661360

Please sign in to comment.