Skip to content

Commit

Permalink
Merge pull request #1 from microsoft/main
Browse files Browse the repository at this point in the history
Pointer events (microsoft#103)
  • Loading branch information
AleksSavelev authored Sep 7, 2022
2 parents 565355a + 4ea43d3 commit 0507551
Show file tree
Hide file tree
Showing 26 changed files with 3,909 additions and 2,448 deletions.
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
dist
coverage
test
.eslintrc.js
karma.conf.ts
webpack.config.js
lib
22 changes: 22 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module.exports = {
env: {
"browser": true,
"es6": true,
"es2017": true
},
root: true,
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
tsconfigRootDir: ".",
},
plugins: [
"powerbi-visuals"
],
extends: [
"plugin:powerbi-visuals/recommended"
],
rules: {
"@typescript-eslint/no-unused-vars": "off"
}
};
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ dist/
/coverage
/lib
*.lock
.vscode/
.vscode/
.tmp
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.0.0
* added `pointerEvent` method to test pointer events
* moved to `eslint` from `tslint`
* updated dependencies to fix vulnerabilities

## 2.6.0
* fix for `uuid`
## 2.5.0
* powerbi-visual-api updated to 4.2.0
* uuid package functionality replaced with crypto method
Expand Down
Loading

0 comments on commit 0507551

Please sign in to comment.