Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
drebrez committed Jun 7, 2024
1 parent b7096e0 commit a69f4c8
Show file tree
Hide file tree
Showing 5 changed files with 2,609 additions and 5,038 deletions.
2 changes: 2 additions & 0 deletions SQLSchemaCompare/SQLSchemaCompare.esproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/1.0.1114476">
<PropertyGroup>
<ShouldRunNpmInstall>false</ShouldRunNpmInstall>
<BuildCommand>yarn build-vs</BuildCommand>
</PropertyGroup>
</Project>
29 changes: 29 additions & 0 deletions SQLSchemaCompare/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
const eslint = require("@eslint/js");
const tseslint = require("typescript-eslint");
const pluginOnlyError = require("eslint-plugin-only-error");

module.exports = tseslint.config(
{
plugins: {
pluginOnlyError,
},
},
eslint.configs.recommended,
{
languageOptions: {
parserOptions: {
project: true,
tsconfigDirName: __dirname,
},
},
files: ["**/*.ts"],
},
...tseslint.configs.recommendedTypeChecked,
{
rules: {
/* Rules to fix */
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-floating-promises": "off",
},
}
);
Loading

0 comments on commit a69f4c8

Please sign in to comment.