Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Jan 23, 2024
1 parent c3ff550 commit f52ec39
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
15 changes: 5 additions & 10 deletions esbuild-sample/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,13 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'semi': [2, "always"],
semi: [2, 'always'],
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
}
};
},
};
6 changes: 2 additions & 4 deletions esbuild-sample/.vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,5 @@
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp

// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"dbaeumer.vscode-eslint"
]
}
"recommendations": ["dbaeumer.vscode-eslint"]
}
2 changes: 1 addition & 1 deletion esbuild-sample/.vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ node_modules
src/**
package-lock.json
tsconfig.json
build.mjs
build.mjs

0 comments on commit f52ec39

Please sign in to comment.