Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 03f265f

Browse files
authored
Merge pull request #1357 from microsoft/dev
Bump to v0.4.6
2 parents 6e4f447 + 6878c30 commit 03f265f

37 files changed

+2645
-488
lines changed

.eslintrc.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
env:
2+
browser: true
3+
es6: true
4+
extends:
5+
- 'eslint:recommended'
6+
- 'plugin:react/recommended'
7+
- 'plugin:@typescript-eslint/eslint-recommended'
8+
globals:
9+
Atomics: readonly
10+
SharedArrayBuffer: readonly
11+
parser: '@typescript-eslint/parser'
12+
parserOptions:
13+
ecmaFeatures:
14+
jsx: true
15+
ecmaVersion: 2018
16+
sourceType: module
17+
plugins:
18+
- react
19+
- '@typescript-eslint'
20+
rules: {
21+
"no-empty": ["error", { "allowEmptyCatch": true }],
22+
"no-unused-vars": ["error", { "args": "none" }]
23+
}
24+

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## Version 0.4.6
5+
6+
- Release date: September 29, 2021
7+
8+
### Changed
9+
10+
- Fix send serial message [#1356](https://github.com/microsoft/vscode-arduino/pull/1356)
11+
- Update eslint to latest version and fix issues reported [#1352](https://github.com/microsoft/vscode-arduino/pull/1352)
12+
413
## Version 0.4.5
514

615
- Release date: September 21, 2021

gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
const gulp = require("gulp");
22
const eslint = require("gulp-eslint");
33
const tslint = require("gulp-tslint");
4-
const PluginError = require("plugin-error");
5-
const log = require("fancy-log");
4+
const PluginError = require("plugin-error");
5+
const log = require("fancy-log");
66
const ts = require("gulp-typescript");
77
const sourcemaps = require("gulp-sourcemaps");
88
const webpack = require("webpack");
@@ -21,7 +21,7 @@ gulp.task("tslint", () => {
2121
});
2222

2323
gulp.task("eslint", () => {
24-
return gulp.src(["!**/node_modules/**"])
24+
return gulp.src(["**/*.ts", "**/*.tsx", "!**/*.d.ts", "!./vendor/**", "!node_modules/**", "!./src/views/node_modules/**", "!out/**"])
2525
.pipe(eslint())
2626
.pipe(eslint.format())
2727
.pipe(eslint.failAfterError());

0 commit comments

Comments
 (0)