Skip to content

Commit f52ec39

Browse files
committed
space
1 parent c3ff550 commit f52ec39

File tree

3 files changed

+8
-15
lines changed

3 files changed

+8
-15
lines changed

esbuild-sample/.eslintrc.js

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@
33
module.exports = {
44
root: true,
55
parser: '@typescript-eslint/parser',
6-
plugins: [
7-
'@typescript-eslint',
8-
],
9-
extends: [
10-
'eslint:recommended',
11-
'plugin:@typescript-eslint/recommended',
12-
],
6+
plugins: ['@typescript-eslint'],
7+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
138
rules: {
14-
'semi': [2, "always"],
9+
semi: [2, 'always'],
1510
'@typescript-eslint/no-unused-vars': 0,
1611
'@typescript-eslint/no-explicit-any': 0,
1712
'@typescript-eslint/explicit-module-boundary-types': 0,
1813
'@typescript-eslint/no-non-null-assertion': 0,
19-
}
20-
};
14+
},
15+
};

esbuild-sample/.vscode/extensions.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,5 @@
33
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
44

55
// List of extensions which should be recommended for users of this workspace.
6-
"recommendations": [
7-
"dbaeumer.vscode-eslint"
8-
]
9-
}
6+
"recommendations": ["dbaeumer.vscode-eslint"]
7+
}

esbuild-sample/.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ node_modules
33
src/**
44
package-lock.json
55
tsconfig.json
6-
build.mjs
6+
build.mjs

0 commit comments

Comments
 (0)